summaryrefslogtreecommitdiff
path: root/desktop/source/splash/unxsplash.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/splash/unxsplash.hxx')
-rw-r--r--desktop/source/splash/unxsplash.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/desktop/source/splash/unxsplash.hxx b/desktop/source/splash/unxsplash.hxx
index fef8cef89f28..d8e8b62012ce 100644
--- a/desktop/source/splash/unxsplash.hxx
+++ b/desktop/source/splash/unxsplash.hxx
@@ -50,23 +50,23 @@ public:
UnxSplashScreen( const css::uno::Reference< css::uno::XComponentContext >& xCtx );
// XStatusIndicator
- virtual void SAL_CALL start( const OUString& aText, sal_Int32 nRange ) throw ( css::uno::RuntimeException );
- virtual void SAL_CALL end() throw ( css::uno::RuntimeException );
- virtual void SAL_CALL reset() throw ( css::uno::RuntimeException );
- virtual void SAL_CALL setText( const OUString& aText ) throw ( css::uno::RuntimeException );
- virtual void SAL_CALL setValue( sal_Int32 nValue ) throw ( css::uno::RuntimeException );
+ virtual void SAL_CALL start( const OUString& aText, sal_Int32 nRange ) throw ( css::uno::RuntimeException, std::exception );
+ virtual void SAL_CALL end() throw ( css::uno::RuntimeException, std::exception );
+ virtual void SAL_CALL reset() throw ( css::uno::RuntimeException, std::exception );
+ virtual void SAL_CALL setText( const OUString& aText ) throw ( css::uno::RuntimeException, std::exception );
+ virtual void SAL_CALL setValue( sal_Int32 nValue ) throw ( css::uno::RuntimeException, std::exception );
// XInitialize
- virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any>& aArguments ) throw ( css::uno::RuntimeException );
+ virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any>& aArguments ) throw ( css::uno::RuntimeException, std::exception );
virtual OUString SAL_CALL getImplementationName()
- throw (css::uno::RuntimeException);
+ throw (css::uno::RuntimeException, std::exception);
virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName)
- throw (css::uno::RuntimeException);
+ throw (css::uno::RuntimeException, std::exception);
virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames()
- throw (css::uno::RuntimeException);
+ throw (css::uno::RuntimeException, std::exception);
};
}