diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-07-02 10:11:17 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-07-02 10:46:47 +0100 |
commit | 9fb4cf25cf25b565058baff74af40398127c4083 (patch) | |
tree | 75c0a1c34c01bfc08cf9cae24f4e7b65d11c3980 /extensions | |
parent | 5f5768e022d4ecc679f471ae13caed4ad990f570 (diff) |
coverity#983663 Uncaught exception
Change-Id: Iecfbb9b7cd1cb8507028cbaf7e39a1e401f74dbe
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/plugin/base/xplugin.cxx | 3 | ||||
-rw-r--r-- | extensions/source/plugin/inc/plugin/impl.hxx | 3 |
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 |