diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-27 20:19:31 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 13:22:55 +0100 |
commit | 1f86fdb464823730f466efe2493fe75f85f8a8fa (patch) | |
tree | 970965f47ac3b40f5d6e3917daa3a981ef45c92b | |
parent | 91e897bae2ed76df67403a2c563a2d1379f2e174 (diff) |
coverity#1308484 Uncaught exception
Change-Id: I2c39d20f1abbfd5c2145d64871699c7e34023d99
-rw-r--r-- | svx/source/unogallery/unogalitem.cxx | 3 | ||||
-rw-r--r-- | svx/source/unogallery/unogalitem.hxx | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/svx/source/unogallery/unogalitem.cxx b/svx/source/unogallery/unogalitem.cxx index e6cf941a8487..8e55ea4cee0d 100644 --- a/svx/source/unogallery/unogalitem.cxx +++ b/svx/source/unogallery/unogalitem.cxx @@ -256,7 +256,8 @@ void GalleryItem::_setPropertyValues( const comphelper::PropertyMapEntry** ppEnt beans::PropertyVetoException, lang::IllegalArgumentException, lang::WrappedTargetException, - uno::RuntimeException) + uno::RuntimeException, + std::exception) { const SolarMutexGuard aGuard; diff --git a/svx/source/unogallery/unogalitem.hxx b/svx/source/unogallery/unogalitem.hxx index e579e0efa88e..e1bb9a22044f 100644 --- a/svx/source/unogallery/unogalitem.hxx +++ b/svx/source/unogallery/unogalitem.hxx @@ -76,7 +76,7 @@ protected: virtual ::sal_Int8 SAL_CALL getType( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; // PropertySetHelper - virtual void _setPropertyValues( const comphelper::PropertyMapEntry** ppEntries, const ::com::sun::star::uno::Any* pValues ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, css::uno::RuntimeException ) SAL_OVERRIDE; + virtual void _setPropertyValues( const comphelper::PropertyMapEntry** ppEntries, const ::com::sun::star::uno::Any* pValues ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; virtual void _getPropertyValues( const comphelper::PropertyMapEntry** ppEntries, ::com::sun::star::uno::Any* pValue ) throw (css::beans::UnknownPropertyException, css::lang::WrappedTargetException, |