diff options
author | Noel Grandin <noel@peralex.com> | 2014-06-05 08:08:35 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-06-05 08:17:47 +0200 |
commit | 11383f56fb6889a324dd74725e5092ac4ce3999d (patch) | |
tree | b065c7f5e92e9f9abe2bde17daada01920dd63c8 /include/connectivity/parameters.hxx | |
parent | da906ab93781928adc51c605825f91b16fe8dd19 (diff) |
connectivity: remove SAL_THROW macro
Change-Id: Id3bbb7a0d39a41b7106303f42d55ba4968235b63
Diffstat (limited to 'include/connectivity/parameters.hxx')
-rw-r--r-- | include/connectivity/parameters.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/connectivity/parameters.hxx b/include/connectivity/parameters.hxx index e1962b835253..f39cf08dab83 100644 --- a/include/connectivity/parameters.hxx +++ b/include/connectivity/parameters.hxx @@ -186,7 +186,7 @@ namespace dbtools @precond the instance is alive, i.e. <member>isAlive</member> returns <TRUE/> */ - void setAllParametersNull() SAL_THROW( ( ::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException ) ); + void setAllParametersNull(); /** resets all detail columns which are, via a parameter, linked to a master column, to the value of this master column. @@ -197,7 +197,7 @@ namespace dbtools @precond the instance is alive, i.e. <member>isAlive</member> returns <TRUE/> */ - void resetParameterValues() SAL_THROW(()); + void resetParameterValues(); /** tells the object that it's database component is being disposed @@ -316,7 +316,7 @@ namespace dbtools const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& _rxParentColumns, const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& _rxColumns, ::std::vector< OUString >& _out_rAdditionalFilterComponents - ) SAL_THROW(( ::com::sun::star::uno::Exception )); + ); /** finalizes our <member>m_pOuterParameters</member> so that it can be used for external parameter listeners @@ -390,7 +390,7 @@ namespace dbtools bool getColumns( ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& /* [out] */ _rxColumns, bool _bFromComposer - ) SAL_THROW(( ::com::sun::star::uno::Exception )); + ); /** retrieves the active connection of the database component */ @@ -400,7 +400,7 @@ namespace dbtools /** caches some info about the connection of our database component */ - void cacheConnectionInfo() SAL_THROW(( )); + void cacheConnectionInfo(); private: ParameterManager(); // never implemented |