diff options
author | Herbert Duerr <hdu@openoffice.org> | 2007-02-21 10:28:48 +0000 |
---|---|---|
committer | Herbert Duerr <hdu@openoffice.org> | 2007-02-21 10:28:48 +0000 |
commit | 345f244a3d2f78395a3dbe19db4111896cb384c7 (patch) | |
tree | d1a9b51083af17eb2b0b40c97f701dcf90e5ad36 /drawinglayer/inc | |
parent | 6b721d4ecb4d755c07cd9717ebbf2ae1250ef652 (diff) |
outline-flag is a font attribute, not a portion attribute
Diffstat (limited to 'drawinglayer/inc')
-rw-r--r-- | drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx b/drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx index e8a00e3924f2..5593d55abd1c 100644 --- a/drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx +++ b/drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx @@ -4,9 +4,9 @@ * * $RCSfile: textprimitive2d.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: hdu $ $Date: 2007-02-21 09:00:33 $ + * last change: $Author: hdu $ $Date: 2007-02-21 11:28:48 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -216,7 +216,6 @@ namespace drawinglayer unsigned mbEmphasisMarkAbove : 1; unsigned mbEmphasisMarkBelow : 1; unsigned mbShadow : 1; - unsigned mbOutline : 1; protected: // local decomposition. @@ -237,8 +236,7 @@ namespace drawinglayer bool bEmphasisMarkAbove = true, bool bEmphasisMarkBelow = false, FontRelief eFontRelief = FONT_RELIEF_NONE, - bool bShadow = false, - bool bOutline = false); + bool bShadow = false); // get data FontUnderline getFontUnderline() const { return meFontUnderline; } @@ -250,7 +248,6 @@ namespace drawinglayer bool getEmphasisMarkAbove() const { return mbEmphasisMarkAbove; } bool getEmphasisMarkBelow() const { return mbEmphasisMarkBelow; } bool getShadow() const { return mbShadow; } - bool getOutline() const { return mbOutline; } // compare operator virtual bool operator==( const BasePrimitive2D& rPrimitive ) const; |