Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp	(revision 55844)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp	(revision 55845)
@@ -1415,11 +1415,4 @@
 
 #ifdef VBOX_WITH_DRAG_AND_DROP
-/**
- * Host -> Guest: Issued when the host cursor enters the guest (VM) window.
- *                The guest will receive the relative cursor coordinates of the
- *                appropriate screen ID.
- *
- * @param pEvent                Related enter event.
- */
 void UIMachineView::dragEnterEvent(QDragEnterEvent *pEvent)
 {
@@ -1442,11 +1435,4 @@
 }
 
-/**
- * Host -> Guest: Issued when the host cursor moves inside (over) the guest (VM) window.
- *                The guest will receive the relative cursor coordinates of the
- *                appropriate screen ID.
- *
- * @param pEvent                Related move event.
- */
 void UIMachineView::dragMoveEvent(QDragMoveEvent *pEvent)
 {
@@ -1469,10 +1455,4 @@
 }
 
-/**
- * Host -> Guest: Issued when the host cursor leaves the guest (VM) window again.
- *                This will ask the guest to stop any further drag'n drop operation.
- *
- * @param pEvent                Related leave event.
- */
 void UIMachineView::dragLeaveEvent(QDragLeaveEvent *pEvent)
 {
@@ -1484,8 +1464,4 @@
 }
 
-/**
- * Guest -> Host: Checks for a pending drag and drop event within the guest
- *                and (optionally) starts a drag and drop operation on the host.
- */
 void UIMachineView::dragIsPending(void)
 {
@@ -1495,9 +1471,4 @@
 }
 
-/**
- * Host -> Guest: Issued when the host drops data into the guest (VM) window.
- *
- * @param pEvent                Related drop event.
- */
 void UIMachineView::dropEvent(QDropEvent *pEvent)
 {
Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.h	(revision 55844)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.h	(revision 55845)
@@ -258,8 +258,41 @@
 
 #ifdef VBOX_WITH_DRAG_AND_DROP
+    /**
+     * Host -> Guest: Issued when the host cursor enters the guest (VM) window.
+     *                The guest will receive the relative cursor coordinates of the
+     *                appropriate screen ID.
+     *
+     * @param pEvent                Related enter event.
+     */
     void dragEnterEvent(QDragEnterEvent *pEvent);
+
+    /**
+     * Host -> Guest: Issued when the host cursor moves inside (over) the guest (VM) window.
+     *                The guest will receive the relative cursor coordinates of the
+     *                appropriate screen ID.
+     *
+     * @param pEvent                Related move event.
+     */
     void dragLeaveEvent(QDragLeaveEvent *pEvent);
+
+    /**
+     * Host -> Guest: Issued when the host cursor leaves the guest (VM) window again.
+     *                This will ask the guest to stop any further drag'n drop operation.
+     *
+     * @param pEvent                Related leave event.
+     */
     void dragMoveEvent(QDragMoveEvent *pEvent);
+
+    /**
+     * Guest -> Host: Checks for a pending drag and drop event within the guest
+     *                and (optionally) starts a drag and drop operation on the host.
+     */
     void dragIsPending(void);
+
+    /**
+     * Host -> Guest: Issued when the host drops data into the guest (VM) window.
+     *
+     * @param pEvent                Related drop event.
+     */
     void dropEvent(QDropEvent *pEvent);
 #endif /* VBOX_WITH_DRAG_AND_DROP */
