summaryrefslogtreecommitdiff
path: root/framework/source/dispatch/loaddispatcher.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/dispatch/loaddispatcher.cxx')
-rw-r--r--framework/source/dispatch/loaddispatcher.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/framework/source/dispatch/loaddispatcher.cxx b/framework/source/dispatch/loaddispatcher.cxx
index 8b0610bcbc0e..68a6524fe4c6 100644
--- a/framework/source/dispatch/loaddispatcher.cxx
+++ b/framework/source/dispatch/loaddispatcher.cxx
@@ -46,34 +46,34 @@ LoadDispatcher::~LoadDispatcher()
void SAL_CALL LoadDispatcher::dispatchWithNotification(const css::util::URL& aURL ,
const css::uno::Sequence< css::beans::PropertyValue >& lArguments,
const css::uno::Reference< css::frame::XDispatchResultListener >& xListener )
- throw(css::uno::RuntimeException)
+ throw(css::uno::RuntimeException, std::exception)
{
impl_dispatch( aURL, lArguments, xListener );
}
void SAL_CALL LoadDispatcher::dispatch(const css::util::URL& aURL ,
const css::uno::Sequence< css::beans::PropertyValue >& lArguments)
- throw(css::uno::RuntimeException)
+ throw(css::uno::RuntimeException, std::exception)
{
impl_dispatch( aURL, lArguments, css::uno::Reference< css::frame::XDispatchResultListener >() );
}
css::uno::Any SAL_CALL LoadDispatcher::dispatchWithReturnValue( const css::util::URL& rURL,
const css::uno::Sequence< css::beans::PropertyValue >& lArguments )
- throw( css::uno::RuntimeException )
+ throw( css::uno::RuntimeException, std::exception )
{
return impl_dispatch( rURL, lArguments, css::uno::Reference< css::frame::XDispatchResultListener >());
}
void SAL_CALL LoadDispatcher::addStatusListener(const css::uno::Reference< css::frame::XStatusListener >& /*xListener*/,
const css::util::URL& /*aURL*/ )
- throw(css::uno::RuntimeException)
+ throw(css::uno::RuntimeException, std::exception)
{
}
void SAL_CALL LoadDispatcher::removeStatusListener(const css::uno::Reference< css::frame::XStatusListener >& /*xListener*/,
const css::util::URL& /*aURL*/ )
- throw(css::uno::RuntimeException)
+ throw(css::uno::RuntimeException, std::exception)
{
}