summaryrefslogtreecommitdiff
path: root/tools/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-06-29 14:04:27 +0200
committerNoel Grandin <noel@peralex.com>2015-06-30 09:13:24 +0200
commitd16d9f950f8cb6d8948875372c9ff1f0aae9fb7a (patch)
treeb8d2146504c704fb9dfa11ea835ae39ff49e3dec /tools/inc
parentfa5822ce69bfc80ac8b1c5caa98de7e5c7ccf568 (diff)
remove some unnecessary typedefs to pointer
that were really not helping make the code any clearer. Found with a search git grep -P 'typedef\s+\w+\s*\*\s*\w+\;' and manual inspection Change-Id: I6a5c031e9e060ad3623a7586ec8a8cc4fe6252e9
Diffstat (limited to 'tools/inc')
-rw-r--r--tools/inc/poly.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/inc/poly.h b/tools/inc/poly.h
index d677bcd8b0ac..0a202bca1615 100644
--- a/tools/inc/poly.h
+++ b/tools/inc/poly.h
@@ -48,13 +48,12 @@ public:
#define MAX_POLYGONS ((sal_uInt16)0x3FF0)
class Polygon;
-typedef Polygon* SVPPOLYGON;
class SAL_WARN_UNUSED ImplPolyPolygon
{
public:
- SVPPOLYGON* mpPolyAry;
- sal_uIntPtr mnRefCount;
+ Polygon** mpPolyAry;
+ sal_uIntPtr mnRefCount;
sal_uInt16 mnCount;
sal_uInt16 mnSize;
sal_uInt16 mnResize;