From 787d41c26d80b01b63c4f65003891f46116bbc29 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 22 May 2014 21:03:48 +0100 Subject: coverity#1215313 Uncaught exception Change-Id: I22cd98a35c6c638e3476d54b742762d8a2dfa7fa --- include/comphelper/propmultiplex.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/comphelper') 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); -- cgit