summaryrefslogtreecommitdiff
path: root/desktop/source/app/check_ext_deps.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/app/check_ext_deps.cxx')
-rw-r--r--desktop/source/app/check_ext_deps.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/desktop/source/app/check_ext_deps.cxx b/desktop/source/app/check_ext_deps.cxx
index 148609b250ec..87fd8bc04111 100644
--- a/desktop/source/app/check_ext_deps.cxx
+++ b/desktop/source/app/check_ext_deps.cxx
@@ -82,21 +82,21 @@ public:
// XCommandEnvironment
virtual uno::Reference<task::XInteractionHandler > SAL_CALL
- getInteractionHandler() throw (uno::RuntimeException);
+ getInteractionHandler() throw (uno::RuntimeException, std::exception);
virtual uno::Reference<ucb::XProgressHandler >
- SAL_CALL getProgressHandler() throw (uno::RuntimeException);
+ SAL_CALL getProgressHandler() throw (uno::RuntimeException, std::exception);
// XInteractionHandler
virtual void SAL_CALL handle(
uno::Reference<task::XInteractionRequest > const & xRequest )
- throw (uno::RuntimeException);
+ throw (uno::RuntimeException, std::exception);
// XProgressHandler
virtual void SAL_CALL push( uno::Any const & Status )
- throw (uno::RuntimeException);
+ throw (uno::RuntimeException, std::exception);
virtual void SAL_CALL update( uno::Any const & Status )
- throw (uno::RuntimeException);
- virtual void SAL_CALL pop() throw (uno::RuntimeException);
+ throw (uno::RuntimeException, std::exception);
+ virtual void SAL_CALL pop() throw (uno::RuntimeException, std::exception);
};
@@ -117,14 +117,14 @@ SilentCommandEnv::~SilentCommandEnv()
Reference<task::XInteractionHandler> SilentCommandEnv::getInteractionHandler()
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
return this;
}
Reference<ucb::XProgressHandler> SilentCommandEnv::getProgressHandler()
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
return this;
}
@@ -132,7 +132,7 @@ Reference<ucb::XProgressHandler> SilentCommandEnv::getProgressHandler()
// XInteractionHandler
void SilentCommandEnv::handle( Reference< task::XInteractionRequest> const & xRequest )
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
deployment::LicenseException licExc;
@@ -181,7 +181,7 @@ void SilentCommandEnv::handle( Reference< task::XInteractionRequest> const & xRe
// XProgressHandler
void SilentCommandEnv::push( uno::Any const & rStatus )
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
OUString sText;
mnLevel += 1;
@@ -197,7 +197,7 @@ void SilentCommandEnv::push( uno::Any const & rStatus )
void SilentCommandEnv::update( uno::Any const & rStatus )
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
OUString sText;
if ( rStatus.hasValue() && ( rStatus >>= sText) )
@@ -207,7 +207,7 @@ void SilentCommandEnv::update( uno::Any const & rStatus )
}
-void SilentCommandEnv::pop() throw (uno::RuntimeException)
+void SilentCommandEnv::pop() throw (uno::RuntimeException, std::exception)
{
mnLevel -= 1;
}