summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx')
-rw-r--r--desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx b/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
index 23e68f35abbd..8a2363c1ea4c 100644
--- a/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
+++ b/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
@@ -129,21 +129,21 @@ public:
// XCommandEnvironment
virtual cssu::Reference<css::task::XInteractionHandler > SAL_CALL
- getInteractionHandler() throw (cssu::RuntimeException);
+ getInteractionHandler() throw (cssu::RuntimeException, std::exception);
virtual cssu::Reference<css::ucb::XProgressHandler >
- SAL_CALL getProgressHandler() throw (cssu::RuntimeException);
+ SAL_CALL getProgressHandler() throw (cssu::RuntimeException, std::exception);
// XInteractionHandler
virtual void SAL_CALL handle(
cssu::Reference<css::task::XInteractionRequest > const & xRequest )
- throw (cssu::RuntimeException);
+ throw (cssu::RuntimeException, std::exception);
// XProgressHandler
virtual void SAL_CALL push( cssu::Any const & Status )
- throw (cssu::RuntimeException);
+ throw (cssu::RuntimeException, std::exception);
virtual void SAL_CALL update( cssu::Any const & Status )
- throw (cssu::RuntimeException);
- virtual void SAL_CALL pop() throw (cssu::RuntimeException);
+ throw (cssu::RuntimeException, std::exception);
+ virtual void SAL_CALL pop() throw (cssu::RuntimeException, std::exception);
};
@@ -625,13 +625,13 @@ UpdateCommandEnv::~UpdateCommandEnv()
// XCommandEnvironment
cssu::Reference<css::task::XInteractionHandler> UpdateCommandEnv::getInteractionHandler()
-throw (cssu::RuntimeException)
+throw (cssu::RuntimeException, std::exception)
{
return this;
}
cssu::Reference<css::ucb::XProgressHandler> UpdateCommandEnv::getProgressHandler()
-throw (cssu::RuntimeException)
+throw (cssu::RuntimeException, std::exception)
{
return this;
}
@@ -639,7 +639,7 @@ throw (cssu::RuntimeException)
// XInteractionHandler
void UpdateCommandEnv::handle(
cssu::Reference< css::task::XInteractionRequest> const & xRequest )
- throw (cssu::RuntimeException)
+ throw (cssu::RuntimeException, std::exception)
{
cssu::Any request( xRequest->getRequest() );
OSL_ASSERT( request.getValueTypeClass() == cssu::TypeClass_EXCEPTION );
@@ -688,16 +688,16 @@ void UpdateCommandEnv::handle(
// XProgressHandler
void UpdateCommandEnv::push( cssu::Any const & /*Status*/ )
-throw (cssu::RuntimeException)
+throw (cssu::RuntimeException, std::exception)
{
}
void UpdateCommandEnv::update( cssu::Any const & /*Status */)
-throw (cssu::RuntimeException)
+throw (cssu::RuntimeException, std::exception)
{
}
-void UpdateCommandEnv::pop() throw (cssu::RuntimeException)
+void UpdateCommandEnv::pop() throw (cssu::RuntimeException, std::exception)
{
}