diff options
author | jp <jp@openoffice.org> | 2000-11-02 16:28:47 +0000 |
---|---|---|
committer | jp <jp@openoffice.org> | 2000-11-02 16:28:47 +0000 |
commit | 0f010dcc7e4c7c2055905bc9412b6c49b867555d (patch) | |
tree | 5ff1c6903e166f36ff41cd3ebd842ee35aa4f7c3 /sw/inc/charatr.hxx | |
parent | 085226135b0f2224b83816fbded9ae9f5c838c23 (diff) |
TwoLines as char and not as text 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 c8a77c2215cc..d2069e4fc101 100644 --- a/sw/inc/charatr.hxx +++ b/sw/inc/charatr.hxx @@ -2,9 +2,9 @@ * * $RCSfile: charatr.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jp $ $Date: 2000-10-30 12:49:30 $ + * last change: $Author: jp $ $Date: 2000-11-02 17:26:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -136,6 +136,8 @@ inline const SvxBrushItem &SwAttrSet::GetChrBackground( BOOL bInP ) const { return (const SvxBrushItem&)Get( RES_CHRATR_BACKGROUND, bInP ); } inline const SvxEmphasisMarkItem &SwAttrSet::GetEmphasisMark( BOOL bInP ) const { return (const SvxEmphasisMarkItem&)Get( RES_CHRATR_EMPHASIS_MARK, bInP ); } +inline const SwFmt2Lines &SwAttrSet::Get2Lines( BOOL bInP ) const + { return (const SwFmt2Lines&)Get( RES_CHRATR_TWO_LINES, bInP ); } /****************************************************************************** * Implementierung der Charakter-Attribut Methoden vom SwFmt @@ -184,5 +186,7 @@ inline const SvxBrushItem &SwFmt::GetChrBackground(BOOL bInP) const { return aSet.GetChrBackground(bInP); } inline const SvxEmphasisMarkItem &SwFmt::GetEmphasisMark( BOOL bInP ) const { return aSet.GetEmphasisMark(bInP); } +inline const SwFmt2Lines &SwFmt::Get2Lines( BOOL bInP ) const + { return aSet.Get2Lines(bInP); } #endif |