summaryrefslogtreecommitdiff
path: root/sw/inc/txatbase.hxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-02-26 14:24:31 +0000
committerKurt Zenker <kz@openoffice.org>2004-02-26 14:24:31 +0000
commit241fd71982f059aa9db29792901c3c89ba42b58a (patch)
tree1fa988af062bc6e8fe581404df1062e8fa60d800 /sw/inc/txatbase.hxx
parent2e73959877fe31766d13168353c64e2c5379d541 (diff)
INTEGRATION: CWS hiddentext (1.15.472); FILE MERGED
2004/01/05 14:18:05 fme 1.15.472.1: #i23660# Feature - Hidden character attribute
Diffstat (limited to 'sw/inc/txatbase.hxx')
-rw-r--r--sw/inc/txatbase.hxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/sw/inc/txatbase.hxx b/sw/inc/txatbase.hxx
index fdbe88081da5..aa6da2133793 100644
--- a/sw/inc/txatbase.hxx
+++ b/sw/inc/txatbase.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: txatbase.hxx,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: os $ $Date: 2002-12-05 13:08:00 $
+ * last change: $Author: kz $ $Date: 2004-02-26 15:24:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -97,6 +97,7 @@ class SvxEmphasisMarkItem;
class SvxCharScaleWidthItem;
class SvxCharRotateItem;
class SvxCharReliefItem;
+class SvxCharHiddenItem;
class SwFmtCharFmt;
class SwFmtINetFmt;
@@ -204,6 +205,7 @@ public:
inline const SvxCharScaleWidthItem &GetCharScaleW() const;
inline const SvxCharRotateItem &GetCharRotate() const;
inline const SvxCharReliefItem &GetCharRelief() const;
+ inline const SvxCharHiddenItem &GetCharHidden() const;
private:
SwTxtAttr( const SwTxtAttr& );
@@ -464,6 +466,11 @@ inline const SvxCharReliefItem& SwTxtAttr::GetCharRelief() const
return (const SvxCharReliefItem&)*pAttr;
}
+inline const SvxCharHiddenItem& SwTxtAttr::GetCharHidden() const
+{
+ ASSERT( pAttr && pAttr->Which() == RES_CHRATR_HIDDEN, "Falsche Abfrage" );
+ return (const SvxCharHiddenItem&)*pAttr;
+}
// #ifndef _TXATBASE_HXX
#endif