summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-07-02 10:11:17 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-07-02 10:46:47 +0100
commit9fb4cf25cf25b565058baff74af40398127c4083 (patch)
tree75c0a1c34c01bfc08cf9cae24f4e7b65d11c3980 /extensions
parent5f5768e022d4ecc679f471ae13caed4ad990f570 (diff)
coverity#983663 Uncaught exception
Change-Id: Iecfbb9b7cd1cb8507028cbaf7e39a1e401f74dbe
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/plugin/base/xplugin.cxx3
-rw-r--r--extensions/source/plugin/inc/plugin/impl.hxx3
2 files changed, 4 insertions, 2 deletions
diff --git a/extensions/source/plugin/base/xplugin.cxx b/extensions/source/plugin/base/xplugin.cxx
index d9509f013a08..6b3ea7bc797d 100644
--- a/extensions/source/plugin/base/xplugin.cxx
+++ b/extensions/source/plugin/base/xplugin.cxx
@@ -835,7 +835,8 @@ void XPlugin_Impl::disposing( const com::sun::star::lang::EventObject& /*rSource
{
}
-void XPlugin_Impl::propertyChange( const com::sun::star::beans::PropertyChangeEvent& rEvent ) throw(std::exception)
+void XPlugin_Impl::propertyChange(const com::sun::star::beans::PropertyChangeEvent& rEvent)
+ throw (css::uno::RuntimeException, std::exception)
{
Guard< Mutex > aGuard( m_aMutex );
diff --git a/extensions/source/plugin/inc/plugin/impl.hxx b/extensions/source/plugin/inc/plugin/impl.hxx
index 1c2d7db7cdef..c9b545e6fa08 100644
--- a/extensions/source/plugin/inc/plugin/impl.hxx
+++ b/extensions/source/plugin/inc/plugin/impl.hxx
@@ -262,7 +262,8 @@ public:
// com::sun::star::beans::XPropertyChangeListener
virtual void SAL_CALL disposing( const com::sun::star::lang::EventObject& rSource ) throw(std::exception) SAL_OVERRIDE;
- virtual void SAL_CALL propertyChange( const com::sun::star::beans::PropertyChangeEvent& rEvent ) throw(std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL propertyChange(const com::sun::star::beans::PropertyChangeEvent& rEvent)
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};
class PluginManager