diff options
Diffstat (limited to 'framework/inc/services/dispatchhelper.hxx')
-rw-r--r-- | framework/inc/services/dispatchhelper.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/inc/services/dispatchhelper.hxx b/framework/inc/services/dispatchhelper.hxx index eb045730fec0..0aab05c12351 100644 --- a/framework/inc/services/dispatchhelper.hxx +++ b/framework/inc/services/dispatchhelper.hxx @@ -90,19 +90,19 @@ class DispatchHelper : public ThreadHelpBase // must be the const OUString& sTargetFrameName , sal_Int32 nSearchFlags , const css::uno::Sequence< css::beans::PropertyValue >& lArguments ) - throw(css::uno::RuntimeException); + throw(css::uno::RuntimeException, std::exception); //--------------------------------------- // XDispatchResultListener virtual void SAL_CALL dispatchFinished( const css::frame::DispatchResultEvent& aResult ) - throw(css::uno::RuntimeException); + throw(css::uno::RuntimeException, std::exception); //--------------------------------------- // XEventListener virtual void SAL_CALL disposing( const css::lang::EventObject& aEvent ) - throw(css::uno::RuntimeException); + throw(css::uno::RuntimeException, std::exception); }; } |