summaryrefslogtreecommitdiff
path: root/sd/inc/sdattr.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-06-26 12:38:01 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-06-26 12:38:01 +0000
commit0c9f3e284c4930ccd2caf8dccc48dfe0b8b2b101 (patch)
tree3fd85c8bef7507199e903c691cced60ec2db48e9 /sd/inc/sdattr.hxx
parent7cf5c750c1bd6cb0e497872f9e49d242108bcfe0 (diff)
INTEGRATION: CWS impressalternativtext (1.3.434); FILE MERGED
2007/05/24 13:05:48 cl 1.3.434.1: #i68100# adding Title and Description to layers
Diffstat (limited to 'sd/inc/sdattr.hxx')
-rw-r--r--sd/inc/sdattr.hxx21
1 files changed, 19 insertions, 2 deletions
diff --git a/sd/inc/sdattr.hxx b/sd/inc/sdattr.hxx
index fb0fcc8bce93..38b9ce8b4879 100644
--- a/sd/inc/sdattr.hxx
+++ b/sd/inc/sdattr.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: sdattr.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 02:58:01 $
+ * last change: $Author: hr $ $Date: 2007-06-26 13:38:01 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -82,6 +82,23 @@ public:
SfxStringItem( ATTR_LAYER_NAME, aStr ) {}
};
+//------------------------------------------------------------------
+
+class SdAttrLayerTitle : public SfxStringItem
+{
+public:
+ SdAttrLayerTitle() : SfxStringItem( ATTR_LAYER_TITLE, XubString()) {}
+ SdAttrLayerTitle( const String& aStr ) : SfxStringItem( ATTR_LAYER_TITLE, aStr ) {}
+};
+
+//------------------------------------------------------------------
+
+class SdAttrLayerDesc : public SfxStringItem
+{
+public:
+ SdAttrLayerDesc() : SfxStringItem( ATTR_LAYER_DESC, XubString()) {}
+ SdAttrLayerDesc( const String& aStr ) : SfxStringItem( ATTR_LAYER_DESC, aStr ) {}
+};
//------------------------------------------------------------------