diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-03 13:52:06 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-03 13:54:02 +0200 |
commit | 5babf1b9037eb283798322eecd8334e6ff1db655 (patch) | |
tree | a6be386ebc21a7e0c47b5ac78279edc873cf0578 /ucb/source | |
parent | c03c9da8c249c2e2a61bab3d6fad325d5934f5e0 (diff) |
remove unnecessary scope qualifier from sal_Bool uses
i.e. convert "::sal_Bool" to "sal_Bool"
Change-Id: Ie5943aee4fee617bf2670655558927ed25b7e067
Diffstat (limited to 'ucb/source')
-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 ); |