summaryrefslogtreecommitdiff
path: root/tools/inc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/inc')
-rw-r--r--tools/inc/poly.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/inc/poly.h b/tools/inc/poly.h
index 3be118927435..6ad1b5b82ceb 100644
--- a/tools/inc/poly.h
+++ b/tools/inc/poly.h
@@ -20,6 +20,7 @@
#define INCLUDED_TOOLS_INC_POLY_H
#include <sal/types.h>
+#include <tools/poly.hxx>
class Point;
@@ -27,8 +28,8 @@ class SAL_WARN_UNUSED ImplPolygonData
{
public:
Point* mpPointAry;
- sal_uInt8* mpFlagAry;
- sal_uInt16 mnPoints;
+ PolyFlags* mpFlagAry;
+ sal_uInt16 mnPoints;
sal_uInt32 mnRefCount;
};
@@ -36,7 +37,7 @@ class SAL_WARN_UNUSED ImplPolygon : public ImplPolygonData
{
public:
ImplPolygon( sal_uInt16 nInitSize, bool bFlags = false );
- ImplPolygon( sal_uInt16 nPoints, const Point* pPtAry, const sal_uInt8* pInitFlags );
+ ImplPolygon( sal_uInt16 nPoints, const Point* pPtAry, const PolyFlags* pInitFlags );
ImplPolygon( const ImplPolygon& rImplPoly );
~ImplPolygon();