summaryrefslogtreecommitdiff
path: root/idl/inc/slot.hxx
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2002-08-23 10:13:22 +0000
committerMathias Bauer <mba@openoffice.org>2002-08-23 10:13:22 +0000
commit6f90ab5a62f86398e1ec4e6eebf85bab4024a4e4 (patch)
tree8b8292d7a6a26726c082a45d1dd31ff73be30de8 /idl/inc/slot.hxx
parenta3d8ae1fdf7ab1ad1bb84fdd6b2ec982b0525c43 (diff)
#98399#: different flags for ImageRotation and ImageReflection
Diffstat (limited to 'idl/inc/slot.hxx')
-rw-r--r--idl/inc/slot.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/idl/inc/slot.hxx b/idl/inc/slot.hxx
index 3634b83f8b2a..4642111964a7 100644
--- a/idl/inc/slot.hxx
+++ b/idl/inc/slot.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: slot.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mba $ $Date: 2002-04-17 12:53:06 $
+ * last change: $Author: mba $ $Date: 2002-08-23 11:13:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -104,6 +104,7 @@ class SvMetaSlot : public SvMetaAttribute
SvBOOL aFastCall;
SvBOOL aContainer;
SvBOOL aImageRotation;
+ SvBOOL aImageReflection;
SvIdentifier aPseudoPrefix;
SvString aDisableFlags;
SvMetaSlot* pLinkedSlot;
@@ -210,6 +211,8 @@ protected:
{ aContainer = bSet; }
void SetImageRotation( BOOL bSet )
{ aImageRotation = bSet; }
+ void SetImageReflection( BOOL bSet )
+ { aImageReflection = bSet; }
public:
SV_DECL_META_FACTORY1( SvMetaSlot, SvMetaReference, 11 )
@@ -258,6 +261,7 @@ public:
BOOL GetFastCall() const;
BOOL GetContainer() const;
BOOL GetImageRotation() const;
+ BOOL GetImageReflection() const;
SvMetaSlot* GetLinkedSlot() const
{ return pLinkedSlot; }
SvMetaSlot* GetNextSlot() const