summaryrefslogtreecommitdiff
path: root/starmath/inc/node.hxx
diff options
context:
space:
mode:
authorThomas Lange <tl@openoffice.org>2001-07-20 12:24:54 +0000
committerThomas Lange <tl@openoffice.org>2001-07-20 12:24:54 +0000
commit15f1898f37bed104fba486517c20e6d04a500a43 (patch)
treec000355bbae7c9e2fa63fd798fb8cc0d10597770 /starmath/inc/node.hxx
parentca2a5fa780642a9511070392807f51fe7b9b275e (diff)
#89982# polyogn resource data now from StarSymbol fonts unicode characters
Diffstat (limited to 'starmath/inc/node.hxx')
-rw-r--r--starmath/inc/node.hxx8
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; }