diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-05-09 14:39:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-09 17:18:35 +0100 |
commit | b307609b18b6a945710e85f84d69763cfd1d95d1 (patch) | |
tree | b3adfcac4eda748e9c951d29ea6d421505c94e62 /reportdesign | |
parent | f1ad620b918b4eae6d3f92bb4cf5d0822c7264eb (diff) |
coverity#1297234 Uncaught exception
Change-Id: I6ce09d3a7c77c5501608a2d1b0812c3c22ef16af
Diffstat (limited to 'reportdesign')
-rw-r--r-- | reportdesign/source/ui/dlg/GroupsSorting.cxx | 2 | ||||
-rw-r--r-- | reportdesign/source/ui/inc/GroupsSorting.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/reportdesign/source/ui/dlg/GroupsSorting.cxx b/reportdesign/source/ui/dlg/GroupsSorting.cxx index 0623eb202936..3bea4c01bbc1 100644 --- a/reportdesign/source/ui/dlg/GroupsSorting.cxx +++ b/reportdesign/source/ui/dlg/GroupsSorting.cxx @@ -1233,7 +1233,7 @@ void OGroupsSortingDialog::showHelpText(sal_uInt16 _nResId) m_pHelpWindow->SetText(OUString(ModuleRes(_nResId))); } -void OGroupsSortingDialog::_propertyChanged(const beans::PropertyChangeEvent& _rEvent) throw( uno::RuntimeException) +void OGroupsSortingDialog::_propertyChanged(const beans::PropertyChangeEvent& _rEvent) throw(uno::RuntimeException, std::exception) { uno::Reference< report::XGroup > xGroup(_rEvent.Source,uno::UNO_QUERY); if ( xGroup.is() ) diff --git a/reportdesign/source/ui/inc/GroupsSorting.hxx b/reportdesign/source/ui/inc/GroupsSorting.hxx index b9c19478969d..e1a7fb377094 100644 --- a/reportdesign/source/ui/inc/GroupsSorting.hxx +++ b/reportdesign/source/ui/inc/GroupsSorting.hxx @@ -139,7 +139,7 @@ private: void operator =(OGroupsSortingDialog&) SAL_DELETED_FUNCTION; protected: // OPropertyChangeListener - virtual void _propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& _rEvent) throw( ::com::sun::star::uno::RuntimeException) SAL_OVERRIDE; + virtual void _propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& _rEvent) throw( css::uno::RuntimeException, std::exception) SAL_OVERRIDE; public: OGroupsSortingDialog( vcl::Window* pParent ,bool _bReadOnly |