summaryrefslogtreecommitdiff
path: root/sw/inc/paratr.hxx
diff options
context:
space:
mode:
authorAndreas Martens <ama@openoffice.org>2001-04-10 13:18:33 +0000
committerAndreas Martens <ama@openoffice.org>2001-04-10 13:18:33 +0000
commit0874154ed783b1eb47b3c43cd47d14d8aeee0fc3 (patch)
tree1ed0d2239aeef62ac67457f87abc7e3150fe1225 /sw/inc/paratr.hxx
parent8de20a906c0d8393d63e0be6672e8981ed3c2084 (diff)
New: vertical text alignment
Diffstat (limited to 'sw/inc/paratr.hxx')
-rw-r--r--sw/inc/paratr.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/sw/inc/paratr.hxx b/sw/inc/paratr.hxx
index 0c99438b39ee..08343a5acee1 100644
--- a/sw/inc/paratr.hxx
+++ b/sw/inc/paratr.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: paratr.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: os $ $Date: 2001-03-20 10:50:20 $
+ * last change: $Author: ama $ $Date: 2001-04-10 14:13:12 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -271,6 +271,8 @@ inline const SvxHangingPunctuationItem &SwAttrSet::GetHangingPunctuation(BOOL bI
{ return (const SvxHangingPunctuationItem&)Get(RES_PARATR_HANGINGPUNCTUATION,bInP); }
inline const SvxForbiddenRuleItem &SwAttrSet::GetForbiddenRule(BOOL bInP) const
{ return (const SvxForbiddenRuleItem&)Get(RES_PARATR_FORBIDDEN_RULES, bInP); }
+inline const SvxParaVertAlignItem &SwAttrSet::GetParaVertAlign(BOOL bInP) const
+ { return (const SvxParaVertAlignItem&)Get( RES_PARATR_VERTALIGN, bInP ); }
/******************************************************************************
* Implementierung der Paragraph-Attribut Methoden vom SwFmt
@@ -302,5 +304,7 @@ inline const SvxHangingPunctuationItem &SwFmt::GetHangingPunctuation(BOOL bInP)
{ return aSet.GetHangingPunctuation(bInP) ; }
inline const SvxForbiddenRuleItem &SwFmt::GetForbiddenRule(BOOL bInP) const
{ return (const SvxForbiddenRuleItem&)aSet.Get(RES_PARATR_FORBIDDEN_RULES, bInP); }
+inline const SvxParaVertAlignItem &SwFmt::GetParaVertAlign(BOOL bInP) const
+ { return (const SvxParaVertAlignItem&)aSet.Get( RES_PARATR_VERTALIGN, bInP ); }
#endif