From 478f9ad06412c910d0264f76962a6d5e1a01aaa2 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Mon, 5 Jan 2009 17:49:45 +0000 Subject: CWS-TOOLING: integrate CWS overline3 2008-12-11 15:24:46 +0100 fredrikh r265314 : i97099 2008-12-11 15:20:37 +0100 fredrikh r265313 : i97099 2008-12-11 15:18:00 +0100 fredrikh r265312 : i97099 2008-12-11 15:17:00 +0100 fredrikh r265311 : i97099 2008-12-11 15:13:20 +0100 fredrikh r265309 : i97144 2008-12-11 15:06:24 +0100 fredrikh r265306 : i97099 2008-11-24 10:41:42 +0100 fme r264213 : #i5991# Overline support 2008-11-24 10:39:53 +0100 fme r264212 : #i5991# Overline support 2008-11-24 10:02:13 +0100 fme r264209 : #5991# Overline support 2008-11-24 10:01:26 +0100 fme r264208 : #5991# Overline support 2008-11-24 09:59:11 +0100 fme r264207 : #5991# Overline support 2008-11-24 09:57:11 +0100 fme r264206 : #5991# Overline support 2008-11-14 10:36:44 +0100 fme r263667 : CWS-TOOLING: rebase CWS overline3 to trunk@263288 (milestone: DEV300:m35) 2008-11-13 16:12:13 +0100 fme r263649 : #i5991# migrate CWS overline3 to SVN. --- sw/inc/txatbase.hxx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'sw/inc/txatbase.hxx') diff --git a/sw/inc/txatbase.hxx b/sw/inc/txatbase.hxx index 2ec5f7c29896..45bacf92eb5c 100644 --- a/sw/inc/txatbase.hxx +++ b/sw/inc/txatbase.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: txatbase.hxx,v $ - * $Revision: 1.22 $ + * $Revision: 1.22.210.1 $ * * This file is part of OpenOffice.org. * @@ -40,6 +40,7 @@ class SvxFontItem; class SvxPostureItem; class SvxWeightItem; class SvxUnderlineItem; +class SvxOverlineItem; class SvxFontHeightItem; class SvxPropSizeItem; class SvxShadowedItem; @@ -133,6 +134,7 @@ public: inline const SvxPostureItem &GetPosture() const; inline const SvxWeightItem &GetWeight() const; inline const SvxUnderlineItem &GetUnderline() const; + inline const SvxOverlineItem &GetOverline() const; inline const SvxFontHeightItem &GetFontSize() const; inline const SvxPropSizeItem &GetPropSize() const; inline const SvxShadowedItem &GetShadowed() const; @@ -236,6 +238,12 @@ inline const SvxUnderlineItem& SwTxtAttr::GetUnderline() const return (const SvxUnderlineItem&)*pAttr; } +inline const SvxOverlineItem& SwTxtAttr::GetOverline() const +{ + ASSERT( pAttr && pAttr->Which() == RES_CHRATR_OVERLINE, "Falsche Abfrage" ); + return (const SvxOverlineItem&)*pAttr; +} + inline const SvxFontHeightItem& SwTxtAttr::GetFontSize() const { ASSERT( pAttr && pAttr->Which() == RES_CHRATR_FONTSIZE, "Falsche Abfrage" ); -- cgit