diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 20:53:22 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 20:53:22 +0100 |
commit | d63a10c69fb21dcb7333bfd0c14cf5268a33ed8c (patch) | |
tree | 816675b4ad4d15cc009e43d79d6e0a15d478b9d5 /svx | |
parent | 6f823d85f73ab149a65a0af81cf3691a0702039e (diff) |
coverity#1308549 Uncaught exception
Change-Id: I9d3086465b9ea6a4aac606b6464abfbfd71dc3ea
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/form/tabwin.cxx | 2 | ||||
-rw-r--r-- | svx/source/inc/tabwin.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/form/tabwin.cxx b/svx/source/form/tabwin.cxx index 2a2187411681..a58f813d312d 100644 --- a/svx/source/form/tabwin.cxx +++ b/svx/source/form/tabwin.cxx @@ -278,7 +278,7 @@ bool FmFieldWin::Close() } -void FmFieldWin::_propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& evt) throw( ::com::sun::star::uno::RuntimeException ) +void FmFieldWin::_propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& evt) throw( ::com::sun::star::uno::RuntimeException, std::exception ) { ::com::sun::star::uno::Reference< ::com::sun::star::form::XForm > xForm(evt.Source, ::com::sun::star::uno::UNO_QUERY); UpdateContent(xForm); diff --git a/svx/source/inc/tabwin.hxx b/svx/source/inc/tabwin.hxx index d973a04fe9db..88ac821d0560 100644 --- a/svx/source/inc/tabwin.hxx +++ b/svx/source/inc/tabwin.hxx @@ -111,7 +111,7 @@ public: protected: // FmXChangeListener - virtual void _propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& evt) throw( ::com::sun::star::uno::RuntimeException ) SAL_OVERRIDE; + virtual void _propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& evt) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE; protected: inline SfxBindings& GetBindings() { return SfxControllerItem::GetBindings(); } |