diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-17 09:35:30 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-17 15:19:50 +0100 |
commit | b3644b6a7015d37668b8b64cdce1d33b6da5b806 (patch) | |
tree | 2f7d95beabf0d024b74d35bcd29b2edf25329e66 /reportdesign | |
parent | 6bb741b7f4cc29c479158a816a47303ce152d74e (diff) |
coverity#1247639 Uncaught exception
Change-Id: I5d91a6b7e4a539ea64b42d747a5fc142b36306dc
Diffstat (limited to 'reportdesign')
-rw-r--r-- | reportdesign/source/ui/inc/ScrollHelper.hxx | 2 | ||||
-rw-r--r-- | reportdesign/source/ui/report/ScrollHelper.cxx | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/reportdesign/source/ui/inc/ScrollHelper.hxx b/reportdesign/source/ui/inc/ScrollHelper.hxx index d1315cad5852..4035aa2ed416 100644 --- a/reportdesign/source/ui/inc/ScrollHelper.hxx +++ b/reportdesign/source/ui/inc/ScrollHelper.hxx @@ -70,7 +70,7 @@ namespace rptui virtual void Resize() SAL_OVERRIDE; virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE; // 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( ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; public: OScrollWindowHelper( ODesignView* _pReportDesignView); virtual ~OScrollWindowHelper(); diff --git a/reportdesign/source/ui/report/ScrollHelper.cxx b/reportdesign/source/ui/report/ScrollHelper.cxx index 5db2bf003377..0fc05318bb64 100644 --- a/reportdesign/source/ui/report/ScrollHelper.cxx +++ b/reportdesign/source/ui/report/ScrollHelper.cxx @@ -362,7 +362,8 @@ void OScrollWindowHelper::DataChanged( const DataChangedEvent& rDCEvt ) } } -void OScrollWindowHelper::_propertyChanged(const beans::PropertyChangeEvent& /*_rEvent*/) throw( uno::RuntimeException) +void OScrollWindowHelper::_propertyChanged(const beans::PropertyChangeEvent& /*_rEvent*/) + throw (uno::RuntimeException, std::exception) { m_aReportWindow.notifySizeChanged(); } |