diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-06-20 18:56:06 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-06-20 20:06:19 +0800 |
commit | 5d0878967ee21a039ef599222b1cf3eb606354d4 (patch) | |
tree | 790cfcbf63fea7292740f182dd612ab20244f6e8 /libart_lgpl/art_svp_intersect.h | |
parent | f5f2132d60cdd1884c6343f759aadfd38a159e04 (diff) | |
download | gsoc2013-evolution-5d0878967ee21a039ef599222b1cf3eb606354d4.tar gsoc2013-evolution-5d0878967ee21a039ef599222b1cf3eb606354d4.tar.gz gsoc2013-evolution-5d0878967ee21a039ef599222b1cf3eb606354d4.tar.bz2 gsoc2013-evolution-5d0878967ee21a039ef599222b1cf3eb606354d4.tar.lz gsoc2013-evolution-5d0878967ee21a039ef599222b1cf3eb606354d4.tar.xz gsoc2013-evolution-5d0878967ee21a039ef599222b1cf3eb606354d4.tar.zst gsoc2013-evolution-5d0878967ee21a039ef599222b1cf3eb606354d4.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'libart_lgpl/art_svp_intersect.h')
-rw-r--r-- | libart_lgpl/art_svp_intersect.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libart_lgpl/art_svp_intersect.h b/libart_lgpl/art_svp_intersect.h index c73b3530c5..b585ed20f5 100644 --- a/libart_lgpl/art_svp_intersect.h +++ b/libart_lgpl/art_svp_intersect.h @@ -41,10 +41,10 @@ typedef enum { typedef struct _ArtSvpWriter ArtSvpWriter; struct _ArtSvpWriter { - int (*add_segment) (ArtSvpWriter *self, int wind_left, int delta_wind, - double x, double y); - void (*add_point) (ArtSvpWriter *self, int seg_id, double x, double y); - void (*close_segment) (ArtSvpWriter *self, int seg_id); + gint (*add_segment) (ArtSvpWriter *self, gint wind_left, gint delta_wind, + gdouble x, gdouble y); + void (*add_point) (ArtSvpWriter *self, gint seg_id, gdouble x, gdouble y); + void (*close_segment) (ArtSvpWriter *self, gint seg_id); }; ArtSvpWriter * @@ -54,8 +54,8 @@ ArtSVP * art_svp_writer_rewind_reap (ArtSvpWriter *self); #if 0 /* XXX already declared in art_svp.h */ -int -art_svp_seg_compare (const void *s1, const void *s2); +gint +art_svp_seg_compare (gconstpointer s1, gconstpointer s2); #endif void |