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

coverity#984006 Uncaught exception

Change-Id: I0aae5a1dfab6a5f0439905a03b13f83be84a8746
üst 946c7b03
...@@ -3775,7 +3775,8 @@ void SelectionManager::shutdown() throw() ...@@ -3775,7 +3775,8 @@ void SelectionManager::shutdown() throw()
m_xDropTransferable.clear(); m_xDropTransferable.clear();
} }
sal_Bool SelectionManager::handleEvent( const Any& event ) throw(std::exception) sal_Bool SelectionManager::handleEvent(const Any& event)
throw (css::uno::RuntimeException, std::exception)
{ {
Sequence< sal_Int8 > aSeq; Sequence< sal_Int8 > aSeq;
if( (event >>= aSeq) ) if( (event >>= aSeq) )
......
...@@ -472,7 +472,8 @@ namespace x11 { ...@@ -472,7 +472,8 @@ namespace x11 {
virtual void SAL_CALL initialize( const Sequence< Any >& arguments ) throw( ::com::sun::star::uno::Exception, std::exception ) SAL_OVERRIDE; virtual void SAL_CALL initialize( const Sequence< Any >& arguments ) throw( ::com::sun::star::uno::Exception, std::exception ) SAL_OVERRIDE;
// XEventHandler // XEventHandler
virtual sal_Bool SAL_CALL handleEvent( const Any& event ) throw(std::exception) SAL_OVERRIDE; virtual sal_Bool SAL_CALL handleEvent(const Any& event)
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XDragSource // XDragSource
virtual sal_Bool SAL_CALL isDragImageSupported() throw(std::exception) SAL_OVERRIDE; virtual sal_Bool SAL_CALL isDragImageSupported() throw(std::exception) SAL_OVERRIDE;
......
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