diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-23 09:06:47 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-23 09:40:04 +0100 |
commit | 942f6a65e1151612973c367c203d44066c8ed287 (patch) | |
tree | 198ff96395418f066e8fed9950223cd61a70e0f9 | |
parent | 064488221b546063d4567b83ca19dc904b31ab05 (diff) |
coverity#989723 Uncaught exception
Change-Id: Iedfbc85972326c10f71f50816d7d806fd4b8bffd
-rw-r--r-- | forms/source/xforms/model.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/xforms/model.hxx b/forms/source/xforms/model.hxx index 6fe8a65d3d17..56ce37141bac 100644 --- a/forms/source/xforms/model.hxx +++ b/forms/source/xforms/model.hxx @@ -291,7 +291,7 @@ public: { PropertySetBase::addPropertyChangeListener(p1, p2); } virtual void SAL_CALL removePropertyChangeListener(const OUString& p1, const css::uno::Reference<css::beans::XPropertyChangeListener>& p2) - throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE + throw (css::beans::UnknownPropertyException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE { PropertySetBase::removePropertyChangeListener(p1, p2); } virtual void SAL_CALL addVetoableChangeListener(const OUString& p1, const css::uno::Reference<css::beans::XVetoableChangeListener>& p2) |