diff options
author | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-08-11 16:34:08 +0100 |
---|---|---|
committer | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-08-11 16:34:54 +0100 |
commit | 8d1842d4d549125a942c0ea17c2889881530f1c0 (patch) | |
tree | 85753f32219d1ada20ee56e3b4808c857cb165e8 /connectivity | |
parent | baaa43446f5661177b4900f260bba313883c4032 (diff) |
Don't change calling convention.
Change-Id: I7fb6aa3337983f6e9dd7adb6d92a47c258d0bebe
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/Connection.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/firebird/Connection.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/firebird/Connection.cxx b/connectivity/source/drivers/firebird/Connection.cxx index 870e7b666629..63daf08a0e08 100644 --- a/connectivity/source/drivers/firebird/Connection.cxx +++ b/connectivity/source/drivers/firebird/Connection.cxx @@ -763,7 +763,7 @@ void OConnection::clearStatements() } //----- XTablesSupplier ------------------------------------------------------ -uno::Reference< XNameAccess > OConnection::getTables() +uno::Reference< XNameAccess > SAL_CALL OConnection::getTables() throw (RuntimeException) { // TODO: IMPLEMENT ME PROPERLY diff --git a/connectivity/source/drivers/firebird/Connection.hxx b/connectivity/source/drivers/firebird/Connection.hxx index 361ce2324ff6..d7a4f37129a0 100644 --- a/connectivity/source/drivers/firebird/Connection.hxx +++ b/connectivity/source/drivers/firebird/Connection.hxx @@ -162,8 +162,8 @@ namespace connectivity virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw (::com::sun::star::uno::RuntimeException); // XTablesSupplier - ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > - getTables() + virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > + SAL_CALL getTables() throw(::com::sun::star::uno::RuntimeException); |