summaryrefslogtreecommitdiff
path: root/include/vcl/dndhelp.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-19 17:47:30 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-19 18:03:09 +0100
commit2bba0a173d5a7eb2fc41871e86bdc4a2a3d3ef8f (patch)
tree4c8659ff40836e4202b558f7ec43bce43b16180f /include/vcl/dndhelp.hxx
parent6cf68af560b45b753836c4d3dc8b00aef1a34123 (diff)
New loplugin:dynexcspec: Add @throws documentation, vcl
Change-Id: Icc398ec6cbb9152ee86b4ac0003619ae04206cd6
Diffstat (limited to 'include/vcl/dndhelp.hxx')
-rw-r--r--include/vcl/dndhelp.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/vcl/dndhelp.hxx b/include/vcl/dndhelp.hxx
index babb5ad7e8ef..e9318a733273 100644
--- a/include/vcl/dndhelp.hxx
+++ b/include/vcl/dndhelp.hxx
@@ -56,25 +56,31 @@ public:
virtual ~DragAndDropClient();
// css::datatransfer::dnd::XDragGestureListener
+ /// @throws css::uno::RuntimeException
virtual void dragGestureRecognized( const css::datatransfer::dnd::DragGestureEvent& dge )
throw (css::uno::RuntimeException,
std::exception);
// css::datatransfer::dnd::XDragSourceListener
+ /// @throws css::uno::RuntimeException
virtual void dragDropEnd(const css::datatransfer::dnd::DragSourceDropEvent& dsde )
throw (css::uno::RuntimeException,
std::exception);
// css::datatransfer::dnd::XDropTargetListener
+ /// @throws css::uno::RuntimeException
virtual void drop( const css::datatransfer::dnd::DropTargetDropEvent& dtde )
throw (css::uno::RuntimeException,
std::exception);
+ /// @throws css::uno::RuntimeException
virtual void dragEnter( const css::datatransfer::dnd::DropTargetDragEnterEvent& dtdee )
throw (css::uno::RuntimeException,
std::exception);
+ /// @throws css::uno::RuntimeException
virtual void dragExit( const css::datatransfer::dnd::DropTargetEvent& dte )
throw (css::uno::RuntimeException,
std::exception);
+ /// @throws css::uno::RuntimeException
virtual void dragOver( const css::datatransfer::dnd::DropTargetDragEvent& dtde )
throw (css::uno::RuntimeException,
std::exception);