diff options
author | Thomas Lange <tl@openoffice.org> | 2001-07-20 12:24:54 +0000 |
---|---|---|
committer | Thomas Lange <tl@openoffice.org> | 2001-07-20 12:24:54 +0000 |
commit | 15f1898f37bed104fba486517c20e6d04a500a43 (patch) | |
tree | c000355bbae7c9e2fa63fd798fb8cc0d10597770 /starmath/inc/node.hxx | |
parent | ca2a5fa780642a9511070392807f51fe7b9b275e (diff) |
#89982# polyogn resource data now from StarSymbol fonts unicode characters
Diffstat (limited to 'starmath/inc/node.hxx')
-rw-r--r-- | starmath/inc/node.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx index 84ddb37697a1..a7e7ede9f7fe 100644 --- a/starmath/inc/node.hxx +++ b/starmath/inc/node.hxx @@ -2,9 +2,9 @@ * * $RCSfile: node.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: tl $ $Date: 2001-06-19 11:53:35 $ + * last change: $Author: tl $ $Date: 2001-07-20 13:22:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -323,13 +323,13 @@ class SmPolygonNode : public SmGraphicNode protected: SmPolygonNode(SmNodeType eNodeType, const SmToken &rNodeToken) : SmGraphicNode(eNodeType, rNodeToken), - aPolygon( (char) rNodeToken.cMathChar ) + aPolygon( rNodeToken.cMathChar ) {} public: SmPolygonNode(const SmToken &rNodeToken) : SmGraphicNode(NPOLYGON, rNodeToken), - aPolygon( (char) rNodeToken.cMathChar ) + aPolygon( rNodeToken.cMathChar ) {} SmPolygon & GetPolygon() { return aPolygon; } |