coverity#737095 Uncaught exception

Change-Id: I65ca622983ced4645d97c3d7e0bcde94a46618c3
This commit is contained in:
Caolán McNamara
2014-02-13 12:57:54 +00:00
parent e87cd3edfc
commit 7842d207b5
2 changed files with 6 additions and 2 deletions

View File

@@ -1822,7 +1822,9 @@ void ImpEditView::dragExit( const ::com::sun::star::datatransfer::dnd::DropTarge
} }
} }
void ImpEditView::dragOver( const ::com::sun::star::datatransfer::dnd::DropTargetDragEvent& rDTDE ) throw (::com::sun::star::uno::RuntimeException) void ImpEditView::dragOver(const ::com::sun::star::datatransfer::dnd::DropTargetDragEvent& rDTDE)
throw (::com::sun::star::uno::RuntimeException,
std::exception)
{ {
SolarMutexGuard aVclGuard; SolarMutexGuard aVclGuard;

View File

@@ -256,7 +256,9 @@ protected:
std::exception); std::exception);
void dragEnter( const ::com::sun::star::datatransfer::dnd::DropTargetDragEnterEvent& dtdee ) throw (::com::sun::star::uno::RuntimeException); 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 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); void dragOver(const ::com::sun::star::datatransfer::dnd::DropTargetDragEvent& dtde)
throw (::com::sun::star::uno::RuntimeException,
std::exception);
void ShowDDCursor( const Rectangle& rRect ); void ShowDDCursor( const Rectangle& rRect );
void HideDDCursor(); void HideDDCursor();