diff options
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_docmgr.hxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_stgelems.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_docmgr.hxx b/ucb/source/ucp/tdoc/tdoc_docmgr.hxx index 7de501793b5f..469bb49e833b 100644 --- a/ucb/source/ucp/tdoc/tdoc_docmgr.hxx +++ b/ucb/source/ucp/tdoc/tdoc_docmgr.hxx @@ -95,7 +95,7 @@ namespace tdoc_ucp { // util::XCloseListener virtual void SAL_CALL queryClosing( const ::com::sun::star::lang::EventObject& Source, - ::sal_Bool GetsOwnership ) + sal_Bool GetsOwnership ) throw (::com::sun::star::util::CloseVetoException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; diff --git a/ucb/source/ucp/tdoc/tdoc_stgelems.cxx b/ucb/source/ucp/tdoc/tdoc_stgelems.cxx index c5f4aa352973..55c505d3cd26 100644 --- a/ucb/source/ucp/tdoc/tdoc_stgelems.cxx +++ b/ucb/source/ucp/tdoc/tdoc_stgelems.cxx @@ -254,7 +254,7 @@ uno::Type SAL_CALL Storage::getElementType() // virtual -::sal_Bool SAL_CALL Storage::hasElements() +sal_Bool SAL_CALL Storage::hasElements() throw ( uno::RuntimeException, std::exception ) { return m_xWrappedStorage->hasElements(); @@ -285,7 +285,7 @@ uno::Sequence< OUString > SAL_CALL Storage::getElementNames() // virtual -::sal_Bool SAL_CALL Storage::hasByName( const OUString& aName ) +sal_Bool SAL_CALL Storage::hasByName( const OUString& aName ) throw ( uno::RuntimeException, std::exception ) { return m_xWrappedStorage->hasByName( aName ); |