From 9fb4cf25cf25b565058baff74af40398127c4083 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 2 Jul 2014 10:11:17 +0100 Subject: coverity#983663 Uncaught exception Change-Id: Iecfbb9b7cd1cb8507028cbaf7e39a1e401f74dbe --- extensions/source/plugin/base/xplugin.cxx | 3 ++- extensions/source/plugin/inc/plugin/impl.hxx | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'extensions/source/plugin') 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 -- cgit