extend signatures to make some coverity rework easier
Change-Id: I670eaa51aa95bf29f51bc6542eae2f562987d5a4
This commit is contained in:
@@ -56,21 +56,43 @@ public:
|
||||
virtual ~DragAndDropClient();
|
||||
|
||||
// ::com::sun::star::datatransfer::dnd::XDragGestureListener
|
||||
virtual void dragGestureRecognized( const ::com::sun::star::datatransfer::dnd::DragGestureEvent& dge ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual void dragGestureRecognized( const ::com::sun::star::datatransfer::dnd::DragGestureEvent& dge )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception);
|
||||
|
||||
// ::com::sun::star::datatransfer::dnd::XDragSourceListener
|
||||
virtual void dragDropEnd( const ::com::sun::star::datatransfer::dnd::DragSourceDropEvent& dsde ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual void dragEnter( const ::com::sun::star::datatransfer::dnd::DragSourceDragEvent& dsde ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual void dragExit( const ::com::sun::star::datatransfer::dnd::DragSourceEvent& dse ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual void dragOver( const ::com::sun::star::datatransfer::dnd::DragSourceDragEvent& dsde ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual void dropActionChanged( const ::com::sun::star::datatransfer::dnd::DragSourceDragEvent& dsde ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual void dragDropEnd(const ::com::sun::star::datatransfer::dnd::DragSourceDropEvent& dsde )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception);
|
||||
virtual void dragEnter( const ::com::sun::star::datatransfer::dnd::DragSourceDragEvent& dsde )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception);
|
||||
virtual void dragExit( const ::com::sun::star::datatransfer::dnd::DragSourceEvent& dse )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception);
|
||||
virtual void dragOver( const ::com::sun::star::datatransfer::dnd::DragSourceDragEvent& dsde )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception);
|
||||
virtual void dropActionChanged( const ::com::sun::star::datatransfer::dnd::DragSourceDragEvent& dsde )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception);
|
||||
|
||||
// ::com::sun::star::datatransfer::dnd::XDropTargetListener
|
||||
virtual void drop( const ::com::sun::star::datatransfer::dnd::DropTargetDropEvent& dtde ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual void dragEnter( const ::com::sun::star::datatransfer::dnd::DropTargetDragEnterEvent& dtdee ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual void dragExit( const ::com::sun::star::datatransfer::dnd::DropTargetEvent& dte ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual void dragOver( const ::com::sun::star::datatransfer::dnd::DropTargetDragEvent& dtde ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual void dropActionChanged( const ::com::sun::star::datatransfer::dnd::DropTargetDragEvent& dtde ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual void drop( const ::com::sun::star::datatransfer::dnd::DropTargetDropEvent& dtde )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception);
|
||||
virtual void dragEnter( const ::com::sun::star::datatransfer::dnd::DropTargetDragEnterEvent& dtdee )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception);
|
||||
virtual void dragExit( const ::com::sun::star::datatransfer::dnd::DropTargetEvent& dte )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception);
|
||||
virtual void dragOver( const ::com::sun::star::datatransfer::dnd::DropTargetDragEvent& dtde )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception);
|
||||
virtual void dropActionChanged( const ::com::sun::star::datatransfer::dnd::DropTargetDragEvent& dtde )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception);
|
||||
};
|
||||
|
||||
class VCL_DLLPUBLIC DragAndDropWrapper :
|
||||
|
@@ -23,47 +23,69 @@ using namespace ::com::sun::star;
|
||||
|
||||
vcl::unohelper::DragAndDropClient::~DragAndDropClient() {}
|
||||
|
||||
void vcl::unohelper::DragAndDropClient::dragGestureRecognized( const ::com::sun::star::datatransfer::dnd::DragGestureEvent& /*dge*/ ) throw (::com::sun::star::uno::RuntimeException)
|
||||
void vcl::unohelper::DragAndDropClient::dragGestureRecognized( const ::com::sun::star::datatransfer::dnd::DragGestureEvent& /*dge*/ )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
}
|
||||
|
||||
void vcl::unohelper::DragAndDropClient::dragDropEnd( const ::com::sun::star::datatransfer::dnd::DragSourceDropEvent& /*dsde*/ ) throw (::com::sun::star::uno::RuntimeException)
|
||||
void vcl::unohelper::DragAndDropClient::dragDropEnd( const ::com::sun::star::datatransfer::dnd::DragSourceDropEvent& /*dsde*/ )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
}
|
||||
|
||||
void vcl::unohelper::DragAndDropClient::dragEnter( const ::com::sun::star::datatransfer::dnd::DragSourceDragEvent& /*dsde*/ ) throw (::com::sun::star::uno::RuntimeException)
|
||||
void vcl::unohelper::DragAndDropClient::dragEnter( const ::com::sun::star::datatransfer::dnd::DragSourceDragEvent& /*dsde*/ )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
}
|
||||
|
||||
void vcl::unohelper::DragAndDropClient::dragExit( const ::com::sun::star::datatransfer::dnd::DragSourceEvent& /*dse*/ ) throw (::com::sun::star::uno::RuntimeException)
|
||||
void vcl::unohelper::DragAndDropClient::dragExit( const ::com::sun::star::datatransfer::dnd::DragSourceEvent& /*dse*/ )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
}
|
||||
|
||||
void vcl::unohelper::DragAndDropClient::dragOver( const ::com::sun::star::datatransfer::dnd::DragSourceDragEvent& /*dsde*/ ) throw (::com::sun::star::uno::RuntimeException)
|
||||
void vcl::unohelper::DragAndDropClient::dragOver( const ::com::sun::star::datatransfer::dnd::DragSourceDragEvent& /*dsde*/ )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
}
|
||||
|
||||
void vcl::unohelper::DragAndDropClient::dropActionChanged( const ::com::sun::star::datatransfer::dnd::DragSourceDragEvent& /*dsde*/ ) throw (::com::sun::star::uno::RuntimeException)
|
||||
void vcl::unohelper::DragAndDropClient::dropActionChanged( const ::com::sun::star::datatransfer::dnd::DragSourceDragEvent& /*dsde*/ )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
}
|
||||
|
||||
void vcl::unohelper::DragAndDropClient::drop( const ::com::sun::star::datatransfer::dnd::DropTargetDropEvent& /*dtde*/ ) throw (::com::sun::star::uno::RuntimeException)
|
||||
void vcl::unohelper::DragAndDropClient::drop( const ::com::sun::star::datatransfer::dnd::DropTargetDropEvent& /*dtde*/ )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
}
|
||||
|
||||
void vcl::unohelper::DragAndDropClient::dragEnter( const ::com::sun::star::datatransfer::dnd::DropTargetDragEnterEvent& /*dtdee*/ ) throw (::com::sun::star::uno::RuntimeException)
|
||||
void vcl::unohelper::DragAndDropClient::dragEnter( const ::com::sun::star::datatransfer::dnd::DropTargetDragEnterEvent& /*dtdee*/ )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
}
|
||||
|
||||
void vcl::unohelper::DragAndDropClient::dragExit( const ::com::sun::star::datatransfer::dnd::DropTargetEvent& /*dte*/ ) throw (::com::sun::star::uno::RuntimeException)
|
||||
void vcl::unohelper::DragAndDropClient::dragExit( const ::com::sun::star::datatransfer::dnd::DropTargetEvent& /*dte*/ )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
}
|
||||
|
||||
void vcl::unohelper::DragAndDropClient::dragOver( const ::com::sun::star::datatransfer::dnd::DropTargetDragEvent& /*dtde*/ ) throw (::com::sun::star::uno::RuntimeException)
|
||||
void vcl::unohelper::DragAndDropClient::dragOver( const ::com::sun::star::datatransfer::dnd::DropTargetDragEvent& /*dtde*/ )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
}
|
||||
|
||||
void vcl::unohelper::DragAndDropClient::dropActionChanged( const ::com::sun::star::datatransfer::dnd::DropTargetDragEvent& /*dtde*/ ) throw (::com::sun::star::uno::RuntimeException)
|
||||
void vcl::unohelper::DragAndDropClient::dropActionChanged( const ::com::sun::star::datatransfer::dnd::DropTargetDragEvent& /*dtde*/ )
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user