diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-02-19 08:35:59 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:36 +0800 |
commit | 3b6c8972a51d635309b789b1aef9034ca23dc737 (patch) | |
tree | 3e2843b8f664df4c022b6cf755828a1296fd5718 /libgnomecanvas | |
parent | 333ccc8abf033453996e4a7e16712f2fc3b9e05a (diff) | |
download | gsoc2013-evolution-3b6c8972a51d635309b789b1aef9034ca23dc737.tar gsoc2013-evolution-3b6c8972a51d635309b789b1aef9034ca23dc737.tar.gz gsoc2013-evolution-3b6c8972a51d635309b789b1aef9034ca23dc737.tar.bz2 gsoc2013-evolution-3b6c8972a51d635309b789b1aef9034ca23dc737.tar.lz gsoc2013-evolution-3b6c8972a51d635309b789b1aef9034ca23dc737.tar.xz gsoc2013-evolution-3b6c8972a51d635309b789b1aef9034ca23dc737.tar.zst gsoc2013-evolution-3b6c8972a51d635309b789b1aef9034ca23dc737.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'libgnomecanvas')
-rw-r--r-- | libgnomecanvas/gnome-canvas-pixbuf.c | 2 | ||||
-rw-r--r-- | libgnomecanvas/gnome-canvas-util.c | 4 | ||||
-rw-r--r-- | libgnomecanvas/gnome-canvas.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/libgnomecanvas/gnome-canvas-pixbuf.c b/libgnomecanvas/gnome-canvas-pixbuf.c index 3d4657a560..fbe673d4c0 100644 --- a/libgnomecanvas/gnome-canvas-pixbuf.c +++ b/libgnomecanvas/gnome-canvas-pixbuf.c @@ -206,7 +206,7 @@ recompute_bounding_box (GnomeCanvasPixbuf *gcp) GnomeCanvasItem *item; GnomeCanvasPixbufPrivate *priv; cairo_matrix_t i2c; - double x1, x2, y1, y2; + gdouble x1, x2, y1, y2; item = GNOME_CANVAS_ITEM (gcp); priv = gcp->priv; diff --git a/libgnomecanvas/gnome-canvas-util.c b/libgnomecanvas/gnome-canvas-util.c index 5ca5979442..569a22e672 100644 --- a/libgnomecanvas/gnome-canvas-util.c +++ b/libgnomecanvas/gnome-canvas-util.c @@ -119,8 +119,8 @@ void gnome_canvas_matrix_transform_rect (const cairo_matrix_t *matrix, double *x1, double *y1, double *x2, double *y2) { - double maxx, maxy, minx, miny; - double tmpx, tmpy; + gdouble maxx, maxy, minx, miny; + gdouble tmpx, tmpy; tmpx = *x1; tmpy = *y1; diff --git a/libgnomecanvas/gnome-canvas.c b/libgnomecanvas/gnome-canvas.c index b313c84af8..8be48a95a7 100644 --- a/libgnomecanvas/gnome-canvas.c +++ b/libgnomecanvas/gnome-canvas.c @@ -1373,7 +1373,7 @@ gnome_canvas_group_update (GnomeCanvasItem *item, GnomeCanvasGroup *group; GList *list; GnomeCanvasItem *i; - double x1, y1, x2, y2; + gdouble x1, y1, x2, y2; group = GNOME_CANVAS_GROUP (item); @@ -3226,7 +3226,7 @@ void gnome_canvas_c2w (GnomeCanvas *canvas, gint cx, gint cy, gdouble *wx, gdouble *wy) { cairo_matrix_t c2w; - double x, y; + gdouble x, y; g_return_if_fail (GNOME_IS_CANVAS (canvas)); |