summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/datatransfer
diff options
context:
space:
mode:
authorPhilipp Lohmann <pl@openoffice.org>2001-01-31 13:43:49 +0000
committerPhilipp Lohmann <pl@openoffice.org>2001-01-31 13:43:49 +0000
commitaef9d02d557673dd221f7269e59be3c1997f1369 (patch)
tree15e2251d6859083ec12b744d0ad36cd5240e863f /offapi/com/sun/star/datatransfer
parent4eeb339928f0bea5d2bddbe400c3c39e9e56319a (diff)
DragGestureEvent needs to have MouseEvents instead of InputEvents
Diffstat (limited to 'offapi/com/sun/star/datatransfer')
-rw-r--r--offapi/com/sun/star/datatransfer/dnd/DragGestureEvent.idl12
1 files changed, 7 insertions, 5 deletions
diff --git a/offapi/com/sun/star/datatransfer/dnd/DragGestureEvent.idl b/offapi/com/sun/star/datatransfer/dnd/DragGestureEvent.idl
index 939155603f4c..9303f1913801 100644
--- a/offapi/com/sun/star/datatransfer/dnd/DragGestureEvent.idl
+++ b/offapi/com/sun/star/datatransfer/dnd/DragGestureEvent.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: DragGestureEvent.idl,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: obr $ $Date: 2001-01-26 11:27:46 $
+ * last change: $Author: pl $ $Date: 2001-01-31 14:43:49 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -105,12 +105,14 @@ struct DragGestureEvent: com::sun::star::lang::EventObject
com::sun::star::uno::XInterface DragSource;
//-------------------------------------------------------------------------
- /** the events comprising the gesture.
+ /** the last event comprising the gesture.
- <p> the initial trigger event is stored with an index of 0. </p>
+ <p> the initial trigger event will presumably be a <type scope="com::sun::star::awt">MouseEvent</type> event.
+ if it is not the implementation should either react accordingly or
+ presume that the left mouse button was clicked. </p>
*/
- sequence < com::sun::star::awt::InputEvent > Events;
+ any Event;
};
//=============================================================================