diff options
author | Oliver Braun <obr@openoffice.org> | 2001-10-30 10:26:13 +0000 |
---|---|---|
committer | Oliver Braun <obr@openoffice.org> | 2001-10-30 10:26:13 +0000 |
commit | 9481c4dac68408b0a5f98e870baa87b469e9b7db (patch) | |
tree | 0a42fe727bb6ba462957eb4400c58662cd18ac00 | |
parent | b878589fd1fb1bf5d4af3b2a409ecaabc58df051 (diff) |
#93988# removed dependency to awt
-rw-r--r-- | offapi/com/sun/star/datatransfer/dnd/XAutoscroll.idl | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/offapi/com/sun/star/datatransfer/dnd/XAutoscroll.idl b/offapi/com/sun/star/datatransfer/dnd/XAutoscroll.idl index d4d8f07a5f4f..62cff63550f5 100644 --- a/offapi/com/sun/star/datatransfer/dnd/XAutoscroll.idl +++ b/offapi/com/sun/star/datatransfer/dnd/XAutoscroll.idl @@ -2,9 +2,9 @@ * * $RCSfile: XAutoscroll.idl,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: mi $ $Date: 2001-10-22 16:00:49 $ + * last change: $Author: obr $ $Date: 2001-10-30 11:26:13 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -66,14 +66,6 @@ #include <com/sun/star/uno/XInterface.idl> #endif -#ifndef __com_sun_star_awt_Rectangle_idl__ -#include <com/sun/star/awt/Rectangle.idl> -#endif - -#ifndef __com_sun_star_awt_Point_idl__ -#include <com/sun/star/awt/Point.idl> -#endif - //============================================================================= module com { module sun { module star { module datatransfer { module dnd { @@ -107,14 +99,14 @@ interface XAutoscroll: com::sun::star::uno::XInterface /** notify the Component to autoscroll. */ - [oneway] void autoscroll( [in] com::sun::star::awt::Point cursorLocation ); + [oneway] void autoscroll( [in] long cursorLocationX, [in] long cursorLocationY ); //------------------------------------------------------------------------- /** @returns the regions describing the autoscrolling region or border relative to the geometry of the implementing Component. */ - sequence < com::sun::star::awt::Rectangle > getAutoscrollRegion(); + any getAutoscrollRegion(); }; //============================================================================= |