summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-11-06 09:29:30 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-11-06 12:15:49 +0000
commitabf49c259b88cb6537ab4b818df3cac5c62d23c2 (patch)
treedc283f1f54d55c6e1a128bb85db4b67281b4b20f /forms
parent3f8a28f41398774642a36153966f766e5c99d05e (diff)
coverity#1338244 Uncaught exception
Change-Id: If46689d2b9cf8f6cb76d61296332444d4c3fb5fd
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/clickableimage.cxx2
-rw-r--r--forms/source/component/clickableimage.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/clickableimage.cxx b/forms/source/component/clickableimage.cxx
index 5e05c52e1cb4..2e8707ce3180 100644
--- a/forms/source/component/clickableimage.cxx
+++ b/forms/source/component/clickableimage.cxx
@@ -835,7 +835,7 @@ namespace frm
void OClickableImageBaseModel::_propertyChanged( const PropertyChangeEvent& rEvt )
- throw( RuntimeException )
+ throw( RuntimeException, std::exception )
{
// If a URL was set, it needs to be passed onto the ImageProducer.
::osl::MutexGuard aGuard(m_aMutex);
diff --git a/forms/source/component/clickableimage.hxx b/forms/source/component/clickableimage.hxx
index a22cd6bc7e70..27fb4eb72ef7 100644
--- a/forms/source/component/clickableimage.hxx
+++ b/forms/source/component/clickableimage.hxx
@@ -120,7 +120,7 @@ namespace frm
using ::cppu::OPropertySetHelper::getFastPropertyValue;
// OPropertyChangeListener
- virtual void _propertyChanged(const css::beans::PropertyChangeEvent&) throw(css::uno::RuntimeException) override;
+ virtual void _propertyChanged(const css::beans::PropertyChangeEvent&) throw(css::uno::RuntimeException, std::exception) override;
// XPropertyState
virtual css::uno::Any getPropertyDefaultByHandle( sal_Int32 nHandle ) const override;