coverity#737093 Uncaught exception

Change-Id: I48bbdc7fe2c6ac60ba9630565c1844a2a24b7ad0
This commit is contained in:
Caolán McNamara 2014-02-13 12:56:58 +00:00
parent f1e4bd297e
commit e87cd3edfc
2 changed files with 6 additions and 2 deletions

View File

@ -1706,7 +1706,9 @@ void ImpEditView::dragDropEnd( const ::com::sun::star::datatransfer::dnd::DragSo
}
}
void ImpEditView::drop( const ::com::sun::star::datatransfer::dnd::DropTargetDropEvent& rDTDE ) throw (::com::sun::star::uno::RuntimeException)
void ImpEditView::drop( const ::com::sun::star::datatransfer::dnd::DropTargetDropEvent& rDTDE )
throw (::com::sun::star::uno::RuntimeException,
std::exception)
{
SolarMutexGuard aVclGuard;

View File

@ -251,7 +251,9 @@ protected:
void dragDropEnd( const ::com::sun::star::datatransfer::dnd::DragSourceDropEvent& dsde )
throw (::com::sun::star::uno::RuntimeException,
std::exception);
void drop( const ::com::sun::star::datatransfer::dnd::DropTargetDropEvent& dtde ) throw (::com::sun::star::uno::RuntimeException);
void drop(const ::com::sun::star::datatransfer::dnd::DropTargetDropEvent& dtde)
throw (::com::sun::star::uno::RuntimeException,
std::exception);
void dragEnter( const ::com::sun::star::datatransfer::dnd::DropTargetDragEnterEvent& dtdee ) throw (::com::sun::star::uno::RuntimeException);
void dragExit( const ::com::sun::star::datatransfer::dnd::DropTargetEvent& dte ) throw (::com::sun::star::uno::RuntimeException);
void dragOver( const ::com::sun::star::datatransfer::dnd::DropTargetDragEvent& dtde ) throw (::com::sun::star::uno::RuntimeException);