summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XRegion.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XRegion.idl')
-rw-r--r--offapi/com/sun/star/awt/XRegion.idl20
1 files changed, 10 insertions, 10 deletions
diff --git a/offapi/com/sun/star/awt/XRegion.idl b/offapi/com/sun/star/awt/XRegion.idl
index fe33c7f98c1d..49a327fac124 100644
--- a/offapi/com/sun/star/awt/XRegion.idl
+++ b/offapi/com/sun/star/awt/XRegion.idl
@@ -40,55 +40,55 @@ published interface XRegion: com::sun::star::uno::XInterface
/** makes this region an empty region.
*/
- [oneway] void clear();
+ void clear();
/** moves this region by the specified horizontal and vertical delta.
*/
- [oneway] void move( [in] long nHorzMove,
+ void move( [in] long nHorzMove,
[in] long nVertMove );
/** adds the specified rectangle to this region.
*/
- [oneway] void unionRectangle( [in] Rectangle Rect );
+ void unionRectangle( [in] Rectangle Rect );
/** intersects the specified rectangle with the current region.
*/
- [oneway] void intersectRectangle( [in] Rectangle Region );
+ void intersectRectangle( [in] Rectangle Region );
/** removes the area of the specified rectangle from this region.
*/
- [oneway] void excludeRectangle( [in] Rectangle Rect );
+ void excludeRectangle( [in] Rectangle Rect );
/** applies an exclusive-or operation with the specified rectangle
to this region.
*/
- [oneway] void xOrRectangle( [in] Rectangle Rect );
+ void xOrRectangle( [in] Rectangle Rect );
/** adds the specified region to this region.
*/
- [oneway] void unionRegion( [in] XRegion Region );
+ void unionRegion( [in] XRegion Region );
/** intersects the specified region with the current region.
*/
- [oneway] void intersectRegion( [in] XRegion Region );
+ void intersectRegion( [in] XRegion Region );
/** removes the area of the specified region from this region.
*/
- [oneway] void excludeRegion( [in] XRegion Region );
+ void excludeRegion( [in] XRegion Region );
/** applies an exclusive-or operation with the specified region
to this region.
*/
- [oneway] void xOrRegion( [in] XRegion Region );
+ void xOrRegion( [in] XRegion Region );
/** returns all rectangles which are making up this region.