diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-02-26 14:21:46 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-02-26 14:21:46 +0000 |
commit | 57f7b407d42dfa1ba32cf6cdb7203a7aff6e1d85 (patch) | |
tree | 90d3e46696b6a3e0e6a38636265898a26221fd86 /sw/inc/charatr.hxx | |
parent | 183726ea2310542e58d44922b6e19a3c94318072 (diff) |
INTEGRATION: CWS hiddentext (1.10.204); FILE MERGED
2004/02/16 08:58:56 fme 1.10.204.2: RESYNC: (1.10-1.11); FILE MERGED
2004/01/05 14:13:58 fme 1.10.204.1: #i23660# Feature - Hidden character attribute
Diffstat (limited to 'sw/inc/charatr.hxx')
-rw-r--r-- | sw/inc/charatr.hxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sw/inc/charatr.hxx b/sw/inc/charatr.hxx index 50b6448dd31e..5cd9d65c59c1 100644 --- a/sw/inc/charatr.hxx +++ b/sw/inc/charatr.hxx @@ -2,9 +2,9 @@ * * $RCSfile: charatr.hxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: hr $ $Date: 2004-02-02 17:52:22 $ + * last change: $Author: kz $ $Date: 2004-02-26 15:21:46 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -144,6 +144,8 @@ inline const SvxCharRotateItem &SwAttrSet::GetCharRotate( BOOL bInP ) const { return (const SvxCharRotateItem&)Get( RES_CHRATR_ROTATE, bInP ); } inline const SvxCharReliefItem &SwAttrSet::GetCharRelief( BOOL bInP ) const { return (const SvxCharReliefItem&)Get( RES_CHRATR_RELIEF, bInP ); } +inline const SvxCharHiddenItem &SwAttrSet::GetCharHidden( BOOL bInP ) const + { return (const SvxCharHiddenItem&)Get( RES_CHRATR_HIDDEN, bInP ); } /****************************************************************************** * Implementierung der Charakter-Attribut Methoden vom SwFmt @@ -204,5 +206,7 @@ inline const SvxCharRotateItem &SwFmt::GetCharRotate( BOOL bInP ) const { return aSet.GetCharRotate(bInP); } inline const SvxCharReliefItem &SwFmt::GetCharRelief( BOOL bInP ) const { return aSet.GetCharRelief(bInP); } +inline const SvxCharHiddenItem &SwFmt::GetCharHidden( BOOL bInP ) const + { return aSet.GetCharHidden(bInP); } #endif |