summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-01-27 15:37:02 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-27 17:03:05 +0000
commite06b894af5700db6341c349ea43aaa93de6bfc2d (patch)
treeacca7534e4340253fb02d9a6297d96741bf62dac /configmgr
parentaece42b7b4223a472d846061f983cfe139473a46 (diff)
coverity#983618 Uncaught exception
Change-Id: I3abf410e7235b8dd1d126a3c8705e3ef9722e93b
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/update.cxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/configmgr/source/update.cxx b/configmgr/source/update.cxx
index 36b04b4880dd..ac53c94c4c52 100644
--- a/configmgr/source/update.cxx
+++ b/configmgr/source/update.cxx
@@ -78,10 +78,12 @@ private:
virtual void SAL_CALL insertExtensionXcuFile(
sal_Bool shared, OUString const & fileUri)
- throw (css::uno::RuntimeException);
+ throw (css::uno::RuntimeException,
+ std::exception);
virtual void SAL_CALL removeExtensionXcuFile(OUString const & fileUri)
- throw (css::uno::RuntimeException);
+ throw (css::uno::RuntimeException,
+ std::exception);
virtual void SAL_CALL insertModificationXcuFile(
OUString const & fileUri,
@@ -103,7 +105,8 @@ void Service::insertExtensionXcsFile(
void Service::insertExtensionXcuFile(
sal_Bool shared, OUString const & fileUri)
- throw (css::uno::RuntimeException)
+ throw (css::uno::RuntimeException,
+ std::exception)
{
Broadcaster bc;
{
@@ -118,7 +121,7 @@ void Service::insertExtensionXcuFile(
}
void Service::removeExtensionXcuFile(OUString const & fileUri)
- throw (css::uno::RuntimeException)
+ throw (css::uno::RuntimeException, std::exception)
{
Broadcaster bc;
{