From 7a47e2126981f89137f8c072e83caf7a05f16e1d Mon Sep 17 00:00:00 2001 From: jp Date: Mon, 5 Mar 2001 12:50:48 +0000 Subject: new: SvxCharReliefItem --- sw/inc/txatbase.hxx | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'sw/inc/txatbase.hxx') diff --git a/sw/inc/txatbase.hxx b/sw/inc/txatbase.hxx index c70b4a5fa216..de19f17ed494 100644 --- a/sw/inc/txatbase.hxx +++ b/sw/inc/txatbase.hxx @@ -2,9 +2,9 @@ * * $RCSfile: txatbase.hxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: ama $ $Date: 2001-02-28 11:16:12 $ + * last change: $Author: jp $ $Date: 2001-03-05 13:50:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -96,6 +96,7 @@ class SvxTwoLinesItem; class SvxEmphasisMarkItem; class SvxCharScaleWidthItem; class SvxCharRotateItem; +class SvxCharReliefItem; class SwFmtCharFmt; class SwFmtINetFmt; @@ -205,6 +206,7 @@ public: inline const SvxEmphasisMarkItem &GetEmphasisMark() const; inline const SvxCharScaleWidthItem &GetCharScaleW() const; inline const SvxCharRotateItem &GetCharRotate() const; + inline const SvxCharReliefItem &GetCharRelief() const; private: SwTxtAttr( const SwTxtAttr& ); @@ -459,10 +461,19 @@ inline const SvxCharRotateItem& SwTxtAttr::GetCharRotate() const return (const SvxCharRotateItem&)*pAttr; } +inline const SvxCharReliefItem& SwTxtAttr::GetCharRelief() const +{ + ASSERT( pAttr && pAttr->Which() == RES_CHRATR_RELIEF, "Falsche Abfrage" ); + return (const SvxCharReliefItem&)*pAttr; +} + /************************************************************************* $Log: not supported by cvs2svn $ + Revision 1.9 2001/02/28 11:16:12 ama + New: RedlineAttr-flag public + Revision 1.8 2001/02/28 10:58:56 ama New: RedlineAttr-flag -- cgit