summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-13 13:15:27 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-13 14:56:21 +0000
commit24949f84ae3ea323676039f4fd4ca204c074468b (patch)
treeb2feed7350438e4175df4e4e3753f5d2a6bdddc4 /framework
parent8bda341061950be7663eb9ed3ce6b1dc7a5e1f53 (diff)
coverity#737202 Uncaught exception
Change-Id: I2ac23ed9f308b92ff9457938b265677f008aaca7
Diffstat (limited to 'framework')
-rw-r--r--framework/source/uiconfiguration/imagemanagerimpl.cxx4
-rw-r--r--framework/source/uiconfiguration/imagemanagerimpl.hxx5
2 files changed, 7 insertions, 2 deletions
diff --git a/framework/source/uiconfiguration/imagemanagerimpl.cxx b/framework/source/uiconfiguration/imagemanagerimpl.cxx
index a912bb804a03..7cf71e82addf 100644
--- a/framework/source/uiconfiguration/imagemanagerimpl.cxx
+++ b/framework/source/uiconfiguration/imagemanagerimpl.cxx
@@ -1290,7 +1290,9 @@ throw ( ::com::sun::star::uno::Exception,
}
void ImageManagerImpl::store()
-throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException)
+ throw (::com::sun::star::uno::Exception,
+ ::com::sun::star::uno::RuntimeException,
+ std::exception)
{
ResetableGuard aGuard( m_aLock );
diff --git a/framework/source/uiconfiguration/imagemanagerimpl.hxx b/framework/source/uiconfiguration/imagemanagerimpl.hxx
index 0fa8e8778a02..2040dbea6222 100644
--- a/framework/source/uiconfiguration/imagemanagerimpl.hxx
+++ b/framework/source/uiconfiguration/imagemanagerimpl.hxx
@@ -131,7 +131,10 @@ namespace framework
// XUIConfigurationPersistence
void reload() throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
- void store() throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
+ void store()
+ throw (::com::sun::star::uno::Exception,
+ ::com::sun::star::uno::RuntimeException,
+ std::exception);
void storeToStorage( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& Storage )
throw (::com::sun::star::uno::Exception,
::com::sun::star::uno::RuntimeException,