diff options
Diffstat (limited to 'libart_lgpl/art_vpath.h')
-rw-r--r-- | libart_lgpl/art_vpath.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libart_lgpl/art_vpath.h b/libart_lgpl/art_vpath.h index f5557f6005..7dadd2865d 100644 --- a/libart_lgpl/art_vpath.h +++ b/libart_lgpl/art_vpath.h @@ -34,15 +34,15 @@ typedef struct _ArtVpath ArtVpath; /* CURVETO is not allowed! */ struct _ArtVpath { ArtPathcode code; - double x; - double y; + gdouble x; + gdouble y; }; /* Some of the functions need to go into their own modules */ void -art_vpath_add_point (ArtVpath **p_vpath, int *pn_points, int *pn_points_max, - ArtPathcode code, double x, double y); +art_vpath_add_point (ArtVpath **p_vpath, gint *pn_points, gint *pn_points_max, + ArtPathcode code, gdouble x, gdouble y); void art_vpath_bbox_drect (const ArtVpath *vec, ArtDRect *drect); |