connectivity/source/drivers/evoab2/NCatalog.cxx | 2 +- connectivity/source/drivers/evoab2/NDriver.cxx | 4 ++-- connectivity/source/drivers/evoab2/NPreparedStatement.cxx | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-)
New commits: commit 83904a8af72896ffb39532025ecdc4a428844ddb Author: Julien Nabet <serval2...@yahoo.fr> AuthorDate: Sat Sep 13 12:28:54 2025 +0200 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Sat Sep 13 15:37:33 2025 +0200 Fix following 2c0c0ff155454eacd6cb821881c4cb76da047e1f Change-Id: I67b9ae87e9ae7caab546ffffe5f9c66e416f33e7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/190916 Reviewed-by: Julien Nabet <serval2...@yahoo.fr> Tested-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/connectivity/source/drivers/evoab2/NCatalog.cxx b/connectivity/source/drivers/evoab2/NCatalog.cxx index 8b4b4a9327bd..1988a5ac8029 100644 --- a/connectivity/source/drivers/evoab2/NCatalog.cxx +++ b/connectivity/source/drivers/evoab2/NCatalog.cxx @@ -57,7 +57,7 @@ void OEvoabCatalog::refreshTables() m_pTables.reset( new OEvoabTables(m_xMetaData,*this,m_aMutex,aVector) ); } // XTablesSupplier -Reference< XNameAccess > SAL_CALL OEvoabCatalog::getTables( ) +Reference< css::container::XNameAccess > SAL_CALL OEvoabCatalog::getTables( ) { ::osl::MutexGuard aGuard(m_aMutex); diff --git a/connectivity/source/drivers/evoab2/NDriver.cxx b/connectivity/source/drivers/evoab2/NDriver.cxx index 262750f24cd5..b5c4030bc50a 100644 --- a/connectivity/source/drivers/evoab2/NDriver.cxx +++ b/connectivity/source/drivers/evoab2/NDriver.cxx @@ -90,7 +90,7 @@ Sequence< OUString > SAL_CALL OEvoabDriver::getSupportedServiceNames( ) } -Reference< XConnection > SAL_CALL OEvoabDriver::connect( const OUString& url, const Sequence< PropertyValue >& info ) +Reference< XConnection > SAL_CALL OEvoabDriver::connect( const OUString& url, const Sequence< css::beans::PropertyValue >& info ) { ::osl::MutexGuard aGuard( m_aMutex ); if (ODriver_BASE::rBHelper.bDisposed) @@ -112,7 +112,7 @@ sal_Bool SAL_CALL OEvoabDriver::acceptsURL( const OUString& url ) } -Sequence< DriverPropertyInfo > SAL_CALL OEvoabDriver::getPropertyInfo( const OUString& url, const Sequence< PropertyValue >& /*info*/ ) +Sequence< DriverPropertyInfo > SAL_CALL OEvoabDriver::getPropertyInfo( const OUString& url, const Sequence< css::beans::PropertyValue >& /*info*/ ) { if ( ! acceptsURL(url) ) { diff --git a/connectivity/source/drivers/evoab2/NPreparedStatement.cxx b/connectivity/source/drivers/evoab2/NPreparedStatement.cxx index 98a76633c05a..59155bd786c6 100644 --- a/connectivity/source/drivers/evoab2/NPreparedStatement.cxx +++ b/connectivity/source/drivers/evoab2/NPreparedStatement.cxx @@ -171,7 +171,7 @@ void SAL_CALL OEvoabPreparedStatement::setByte( sal_Int32 /*parameterIndex*/, sa } -void SAL_CALL OEvoabPreparedStatement::setDate( sal_Int32 /*parameterIndex*/, const Date& /*aData*/ ) +void SAL_CALL OEvoabPreparedStatement::setDate( sal_Int32 /*parameterIndex*/, const css::util::Date& /*aData*/ ) { ::dbtools::throwFunctionNotSupportedSQLException( u"XParameters::setDate"_ustr, *this ); } @@ -183,7 +183,7 @@ void SAL_CALL OEvoabPreparedStatement::setTime( sal_Int32 /*parameterIndex*/, co } -void SAL_CALL OEvoabPreparedStatement::setTimestamp( sal_Int32 /*parameterIndex*/, const DateTime& /*aVal*/ ) +void SAL_CALL OEvoabPreparedStatement::setTimestamp( sal_Int32 /*parameterIndex*/, const css::util::DateTime& /*aVal*/ ) { ::dbtools::throwFunctionNotSupportedSQLException( u"XParameters::setTimestamp"_ustr, *this ); } @@ -280,13 +280,13 @@ void SAL_CALL OEvoabPreparedStatement::setBytes( sal_Int32 /*parameterIndex*/, c } -void SAL_CALL OEvoabPreparedStatement::setCharacterStream( sal_Int32 /*parameterIndex*/, const Reference< XInputStream >& /*x*/, sal_Int32 /*length*/ ) +void SAL_CALL OEvoabPreparedStatement::setCharacterStream( sal_Int32 /*parameterIndex*/, const Reference< css::io::XInputStream >& /*x*/, sal_Int32 /*length*/ ) { ::dbtools::throwFunctionNotSupportedSQLException( u"XParameters::setCharacterStream"_ustr, *this ); } -void SAL_CALL OEvoabPreparedStatement::setBinaryStream( sal_Int32 /*parameterIndex*/, const Reference< XInputStream >& /*x*/, sal_Int32 /*length*/ ) +void SAL_CALL OEvoabPreparedStatement::setBinaryStream( sal_Int32 /*parameterIndex*/, const Reference< css::io::XInputStream >& /*x*/, sal_Int32 /*length*/ ) { ::dbtools::throwFunctionNotSupportedSQLException( u"XParameters::setBinaryStream"_ustr, *this ); }