summaryrefslogtreecommitdiff
path: root/idl/inc
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
parenta3d8ae1fdf7ab1ad1bb84fdd6b2ec982b0525c43 (diff)
#98399#: different flags for ImageRotation and ImageReflection
Diffstat (limited to 'idl/inc')
-rw-r--r--idl/inc/globals.hxx6
-rw-r--r--idl/inc/slot.hxx8
2 files changed, 10 insertions, 4 deletions
diff --git a/idl/inc/globals.hxx b/idl/inc/globals.hxx
index 026d1df8db19..1160b57ab601 100644
--- a/idl/inc/globals.hxx
+++ b/idl/inc/globals.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: globals.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:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -144,6 +144,7 @@ struct SvGlobalHashNames
SvStringHashEntryRef MM_SbxObject;
SvStringHashEntryRef MM_Container;
SvStringHashEntryRef MM_ImageRotation;
+ SvStringHashEntryRef MM_ImageReflection;
SvStringHashEntryRef MM_IsCollection;
SvStringHashEntryRef MM_ReadOnlyDoc;
SvStringHashEntryRef MM_ConfigName;
@@ -254,6 +255,7 @@ HASH_INLINE(FastCall)
HASH_INLINE(SbxObject)
HASH_INLINE(Container)
HASH_INLINE(ImageRotation)
+HASH_INLINE(ImageReflection)
HASH_INLINE(IsCollection)
HASH_INLINE(ReadOnlyDoc)
HASH_INLINE(ConfigName)
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