diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-25 15:54:52 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-25 16:12:23 +0000 |
commit | 6fbe00f9b6ae8211bc6f2a0e78120548d7b38432 (patch) | |
tree | 96fdf9388669463d8fec3d01c3a9545729c2a3ac /reportdesign | |
parent | 5da1ef56f7b88e360010c981ab12a60720ac46e5 (diff) |
coverity#983702 Uncaught exception
Change-Id: I3a0b4c8fe4208d0945860f6b4e1b31852aef8502
Diffstat (limited to 'reportdesign')
-rw-r--r-- | reportdesign/source/ui/dlg/Navigator.cxx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/reportdesign/source/ui/dlg/Navigator.cxx b/reportdesign/source/ui/dlg/Navigator.cxx index c949185326f5..47e53714929f 100644 --- a/reportdesign/source/ui/dlg/Navigator.cxx +++ b/reportdesign/source/ui/dlg/Navigator.cxx @@ -133,7 +133,8 @@ class NavigatorTree : public ::cppu::BaseMutex // OContainerListener virtual void _elementInserted( const container::ContainerEvent& _rEvent ) throw(uno::RuntimeException); - virtual void _elementRemoved( const container::ContainerEvent& _Event ) throw(uno::RuntimeException); + virtual void _elementRemoved( const container::ContainerEvent& _Event ) + throw (uno::RuntimeException, std::exception); virtual void _elementReplaced( const container::ContainerEvent& _rEvent ) throw(uno::RuntimeException); virtual void _disposing(const lang::EventObject& _rSource) throw (uno::RuntimeException, std::exception); @@ -167,7 +168,8 @@ protected: virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& _rEvt ); // OSelectionChangeListener - virtual void _disposing(const lang::EventObject& _rSource) throw( uno::RuntimeException); + virtual void _disposing(const lang::EventObject& _rSource) + throw (uno::RuntimeException, std::exception); // OPropertyChangeListener virtual void _propertyChanged(const beans::PropertyChangeEvent& _rEvent) throw( uno::RuntimeException); @@ -843,7 +845,8 @@ void NavigatorTree::UserData::_elementInserted( const container::ContainerEvent& m_pTree->_elementInserted( _rEvent ); } -void NavigatorTree::UserData::_elementRemoved( const container::ContainerEvent& _rEvent ) throw(uno::RuntimeException) +void NavigatorTree::UserData::_elementRemoved( const container::ContainerEvent& _rEvent ) + throw (uno::RuntimeException, std::exception) { m_pTree->_elementRemoved( _rEvent ); } @@ -853,7 +856,8 @@ void NavigatorTree::UserData::_elementReplaced( const container::ContainerEvent& m_pTree->_elementReplaced( _rEvent ); } -void NavigatorTree::UserData::_disposing(const lang::EventObject& _rSource) throw( uno::RuntimeException) +void NavigatorTree::UserData::_disposing(const lang::EventObject& _rSource) + throw (uno::RuntimeException, std::exception) { m_pTree->_disposing( _rSource ); } |