summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-10-17 09:24:07 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-10-17 15:19:43 +0100
commit6e417ffe04d5503da4b9fec56f14c46c785d804f (patch)
treec5b64f595d666f710443957b810964e1c21cd980 /framework
parentef057fc58e7463225a4eda25d84596235965282c (diff)
coverity#1247630 Uncaught exception
Change-Id: Ic15d712a26bdb6565b78efc4e9cab1bb09fd1cf4
Diffstat (limited to 'framework')
-rw-r--r--framework/source/uiconfiguration/imagemanagerimpl.cxx5
-rw-r--r--framework/source/uiconfiguration/imagemanagerimpl.hxx2
2 files changed, 4 insertions, 3 deletions
diff --git a/framework/source/uiconfiguration/imagemanagerimpl.cxx b/framework/source/uiconfiguration/imagemanagerimpl.cxx
index 22738604f079..de30d279f3ae 100644
--- a/framework/source/uiconfiguration/imagemanagerimpl.cxx
+++ b/framework/source/uiconfiguration/imagemanagerimpl.cxx
@@ -1102,8 +1102,9 @@ throw ( ::com::sun::star::container::ElementExistException,
// XUIConfigurationPersistence
void ImageManagerImpl::reload()
-throw ( ::com::sun::star::uno::Exception,
- ::com::sun::star::uno::RuntimeException )
+ throw (css::uno::Exception,
+ css::uno::RuntimeException,
+ std::exception)
{
SolarMutexClearableGuard aGuard;
diff --git a/framework/source/uiconfiguration/imagemanagerimpl.hxx b/framework/source/uiconfiguration/imagemanagerimpl.hxx
index 93ee508480b4..ea5e47a699cd 100644
--- a/framework/source/uiconfiguration/imagemanagerimpl.hxx
+++ b/framework/source/uiconfiguration/imagemanagerimpl.hxx
@@ -123,7 +123,7 @@ namespace framework
void removeConfigurationListener( const ::com::sun::star::uno::Reference< ::com::sun::star::ui::XUIConfigurationListener >& Listener ) throw (::com::sun::star::uno::RuntimeException);
// XUIConfigurationPersistence
- void reload() throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
+ void reload() throw (css::uno::Exception, css::uno::RuntimeException, std::exception);
void store()
throw (::com::sun::star::uno::Exception,
::com::sun::star::uno::RuntimeException,