diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-22 21:03:48 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-23 08:54:37 +0100 |
commit | 787d41c26d80b01b63c4f65003891f46116bbc29 (patch) | |
tree | f6f91613dbd4bba037fd1c63c326ebb416b6ebef /include/comphelper/propmultiplex.hxx | |
parent | 93dd12a160f2d64c06921d413f092494e52f283a (diff) |
coverity#1215313 Uncaught exception
Change-Id: I22cd98a35c6c638e3476d54b742762d8a2dfa7fa
Diffstat (limited to 'include/comphelper/propmultiplex.hxx')
-rw-r--r-- | include/comphelper/propmultiplex.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/comphelper/propmultiplex.hxx b/include/comphelper/propmultiplex.hxx index a543ac634ec5..7fa87320fcff 100644 --- a/include/comphelper/propmultiplex.hxx +++ b/include/comphelper/propmultiplex.hxx @@ -51,7 +51,8 @@ namespace comphelper : m_pAdapter(NULL), m_rMutex(_rMutex) { } virtual ~OPropertyChangeListener(); - virtual void _propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& _rEvent) throw( ::com::sun::star::uno::RuntimeException) = 0; + virtual void _propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& _rEvent) + throw (css::uno::RuntimeException, std::exception) = 0; virtual void _disposing(const ::com::sun::star::lang::EventObject& _rSource) throw( ::com::sun::star::uno::RuntimeException, std::exception); |