summaryrefslogtreecommitdiff
path: root/splash/SplashPath.h
diff options
context:
space:
mode:
authorOliver Sander <oliver.sander@tu-dresden.de>2018-11-30 18:02:01 +0100
committerAlbert Astals Cid <tsdgeos@yahoo.es>2018-12-06 17:31:41 +0000
commit51bb46766cc5b50d81227cd91e518bc78b0a944b (patch)
tree9a36edec79f6a18547b8b6ecb1146c440780883d /splash/SplashPath.h
parent27954f7d44275d4fc458da680bba89ab749d3c07 (diff)
Replace Guchar by unsigned char
Diffstat (limited to 'splash/SplashPath.h')
-rw-r--r--splash/SplashPath.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/splash/SplashPath.h b/splash/SplashPath.h
index a44732d9..e20d5335 100644
--- a/splash/SplashPath.h
+++ b/splash/SplashPath.h
@@ -107,7 +107,7 @@ public:
// Get the points on the path.
int getLength() { return length; }
- void getPoint(int i, double *x, double *y, Guchar *f)
+ void getPoint(int i, double *x, double *y, unsigned char *f)
{ *x = pts[i].x; *y = pts[i].y; *f = flags[i]; }
// Get the current point.
@@ -125,7 +125,7 @@ protected:
bool openSubpath() { return curSubpath < length - 1; }
SplashPathPoint *pts; // array of points
- Guchar *flags; // array of flags
+ unsigned char *flags; // array of flags
int length, size; // length/size of the pts and flags arrays
int curSubpath; // index of first point in last subpath