diff --git a/drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx b/drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx index 5698efe4b2c0..8f2a52425999 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.3 $ + * $Revision: 1.4 $ * - * last change: $Author: hdu $ $Date: 2007-02-02 15:13:57 $ + * last change: $Author: hdu $ $Date: 2007-02-15 13:17:06 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -74,6 +74,8 @@ namespace drawinglayer unsigned mbSymbol : 1; unsigned mbVertical : 1; unsigned mbItalic : 1; + unsigned mbOutline : 1; + // TODO: pair kerning and CJK kerning // compare operator bool operator==(const FontAttributes& rCompare) const @@ -83,6 +85,7 @@ namespace drawinglayer && mnWeight == rCompare.mnWeight && mbSymbol == rCompare.mbSymbol && mbVertical == rCompare.mbVertical + && mbOutline == rCompare.mbOutline && mbItalic == rCompare.mbItalic); } };