diff options
Diffstat (limited to 'desktop/source/offacc/acceptor.cxx')
-rw-r--r-- | desktop/source/offacc/acceptor.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/desktop/source/offacc/acceptor.cxx b/desktop/source/offacc/acceptor.cxx index 68a26d565fc9..872ef673261b 100644 --- a/desktop/source/offacc/acceptor.cxx +++ b/desktop/source/offacc/acceptor.cxx @@ -125,7 +125,7 @@ void Acceptor::run() // XInitialize void Acceptor::initialize( const Sequence<Any>& aArguments ) - throw( Exception ) + throw( Exception, std::exception ) { // prevent multiple initialization osl::ClearableMutexGuard aGuard( m_aMutex ); @@ -181,7 +181,7 @@ OUString Acceptor::impl_getImplementationName() return OUString("com.sun.star.office.comp.Acceptor"); } OUString Acceptor::getImplementationName() - throw (RuntimeException) + throw (RuntimeException, std::exception) { return Acceptor::impl_getImplementationName(); } @@ -192,13 +192,13 @@ Sequence<OUString> Acceptor::impl_getSupportedServiceNames() return aSequence; } Sequence<OUString> Acceptor::getSupportedServiceNames() - throw (RuntimeException) + throw (RuntimeException, std::exception) { return Acceptor::impl_getSupportedServiceNames(); } sal_Bool Acceptor::supportsService(OUString const & ServiceName) - throw (css::uno::RuntimeException) + throw (css::uno::RuntimeException, std::exception) { return cppu::supportsService(this, ServiceName); } @@ -225,7 +225,7 @@ AccInstanceProvider::~AccInstanceProvider() } Reference<XInterface> AccInstanceProvider::getInstance (const OUString& aName ) - throw ( NoSuchElementException ) + throw ( NoSuchElementException, std::exception ) { Reference<XInterface> rInstance; |