From 5babf1b9037eb283798322eecd8334e6ff1db655 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 3 Apr 2014 13:52:06 +0200 Subject: remove unnecessary scope qualifier from sal_Bool uses i.e. convert "::sal_Bool" to "sal_Bool" Change-Id: Ie5943aee4fee617bf2670655558927ed25b7e067 --- ucb/source/ucp/tdoc/tdoc_docmgr.hxx | 2 +- ucb/source/ucp/tdoc/tdoc_stgelems.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'ucb/source') 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 ); -- cgit