summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl')
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl10
1 files changed, 5 insertions, 5 deletions
diff --git a/offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl b/offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl
index 23ac4cb4856b..e60c19ec0ac4 100644
--- a/offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/XDragSourceListener.idl
@@ -43,7 +43,7 @@ published interface XDragSourceListener: com::sun::star::lang::XEventListener
The <type>DragSourceDropEvent</type>
*/
- [oneway] void dragDropEnd( [in] DragSourceDropEvent dsde );
+ void dragDropEnd( [in] DragSourceDropEvent dsde );
/** Called as the hotspot enters a platform dependent drop site.
@@ -54,7 +54,7 @@ published interface XDragSourceListener: com::sun::star::lang::XEventListener
The <type>DragSourceDragEvent</type>.
*/
- [oneway] void dragEnter( [in] DragSourceDragEvent dsde );
+ void dragEnter( [in] DragSourceDragEvent dsde );
/** Called as the hotspot exits a platform dependent drop site.
@@ -65,7 +65,7 @@ published interface XDragSourceListener: com::sun::star::lang::XEventListener
The <type>DragSourceEvent</type>.
*/
- [oneway] void dragExit( [in] DragSourceEvent dse );
+ void dragExit( [in] DragSourceEvent dse );
/** Called as the hotspot moves over a platform dependent drop site.
@@ -73,7 +73,7 @@ published interface XDragSourceListener: com::sun::star::lang::XEventListener
The <type>DragSourceEvent</type>
*/
- [oneway] void dragOver( [in] DragSourceDragEvent dsde );
+ void dragOver( [in] DragSourceDragEvent dsde );
/** Called when the user has modified the drop gesture.
@@ -81,7 +81,7 @@ published interface XDragSourceListener: com::sun::star::lang::XEventListener
The <type>DragSourceEvent</type>.
*/
- [oneway] void dropActionChanged( [in] DragSourceDragEvent dsde );
+ void dropActionChanged( [in] DragSourceDragEvent dsde );
};