Kaydet (Commit) b3644b6a authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1247639 Uncaught exception

Change-Id: I5d91a6b7e4a539ea64b42d747a5fc142b36306dc
üst 6bb741b7
...@@ -70,7 +70,7 @@ namespace rptui ...@@ -70,7 +70,7 @@ namespace rptui
virtual void Resize() SAL_OVERRIDE; virtual void Resize() SAL_OVERRIDE;
virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE; virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
// OPropertyChangeListener // 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: public:
OScrollWindowHelper( ODesignView* _pReportDesignView); OScrollWindowHelper( ODesignView* _pReportDesignView);
virtual ~OScrollWindowHelper(); virtual ~OScrollWindowHelper();
......
...@@ -362,7 +362,8 @@ void OScrollWindowHelper::DataChanged( const DataChangedEvent& rDCEvt ) ...@@ -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(); m_aReportWindow.notifySizeChanged();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment