diff options
Diffstat (limited to 'starmath/inc/node.hxx')
-rw-r--r-- | starmath/inc/node.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx index ff6f797bc105..1ca0db792986 100644 --- a/starmath/inc/node.hxx +++ b/starmath/inc/node.hxx @@ -416,7 +416,7 @@ public: */ class SmPolyLineNode : public SmGraphicNode { - Polygon aPoly; + tools::Polygon aPoly; Size aToSize; long nWidth; @@ -424,7 +424,7 @@ public: SmPolyLineNode(const SmToken &rNodeToken); long GetWidth() const { return nWidth; } - Polygon &GetPolygon() { return aPoly; } + tools::Polygon &GetPolygon() { return aPoly; } virtual void AdaptToX(const OutputDevice &rDev, sal_uLong nWidth) SAL_OVERRIDE; virtual void AdaptToY(const OutputDevice &rDev, sal_uLong nHeight) SAL_OVERRIDE; |