diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-10-29 07:19:04 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-10-30 01:51:38 +0800 |
commit | 50d5ba94a6c750a38e092317b4d2e5188899fdeb (patch) | |
tree | 4929ab04961b926268afe36fd374ceea1ae98c07 | |
parent | 75f1dc888e2b800e1b8aaa4a68af13419f26c060 (diff) | |
download | gsoc2013-evolution-50d5ba94a6c750a38e092317b4d2e5188899fdeb.tar.gz gsoc2013-evolution-50d5ba94a6c750a38e092317b4d2e5188899fdeb.tar.zst gsoc2013-evolution-50d5ba94a6c750a38e092317b4d2e5188899fdeb.zip |
Fix typos in gnome_canvas_shape_bounds().
-rw-r--r-- | libgnomecanvas/gnome-canvas-shape.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgnomecanvas/gnome-canvas-shape.c b/libgnomecanvas/gnome-canvas-shape.c index 708ced26b0..24db7033a3 100644 --- a/libgnomecanvas/gnome-canvas-shape.c +++ b/libgnomecanvas/gnome-canvas-shape.c @@ -506,9 +506,9 @@ gnome_canvas_shape_bounds (GnomeCanvasItem *item, gdouble *x1, gdouble *y1, gdou cairo_append_path (cr, shape->priv->path); if (gnome_canvas_shape_setup_for_stroke (shape, cr)) - cairo_stroke_extents (cr, x1, x2, y1, y2); + cairo_stroke_extents (cr, x1, y1, x2, y2); else if (gnome_canvas_shape_setup_for_fill (shape, cr)) - cairo_fill_extents (cr, x1, x2, y1, y2); + cairo_fill_extents (cr, x1, y1, x2, y2); else { *x1 = *x2 = *y1 = *y2 = 0; } |