diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-17 09:24:07 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-17 15:19:43 +0100 |
commit | 6e417ffe04d5503da4b9fec56f14c46c785d804f (patch) | |
tree | c5b64f595d666f710443957b810964e1c21cd980 | |
parent | ef057fc58e7463225a4eda25d84596235965282c (diff) |
coverity#1247630 Uncaught exception
Change-Id: Ic15d712a26bdb6565b78efc4e9cab1bb09fd1cf4
-rw-r--r-- | framework/source/uiconfiguration/imagemanagerimpl.cxx | 5 | ||||
-rw-r--r-- | framework/source/uiconfiguration/imagemanagerimpl.hxx | 2 |
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, |