diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-10-25 10:10:07 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-10-30 01:51:38 +0800 |
commit | b5f2dc92ff163ae15e5595786e1e30a510ff9a9a (patch) | |
tree | 35116286a29591b16a6b0b246e73d999ff7d47cf | |
parent | d9d9d7f0efad7a1b4464b541201d922cd373c3f4 (diff) | |
download | gsoc2013-evolution-b5f2dc92ff163ae15e5595786e1e30a510ff9a9a.tar.gz gsoc2013-evolution-b5f2dc92ff163ae15e5595786e1e30a510ff9a9a.tar.zst gsoc2013-evolution-b5f2dc92ff163ae15e5595786e1e30a510ff9a9a.zip |
Actually set the path in gnome_canvas_shape_set_path().
-rw-r--r-- | libgnomecanvas/gnome-canvas-shape.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libgnomecanvas/gnome-canvas-shape.c b/libgnomecanvas/gnome-canvas-shape.c index a2ff712085..37c8264c7e 100644 --- a/libgnomecanvas/gnome-canvas-shape.c +++ b/libgnomecanvas/gnome-canvas-shape.c @@ -223,6 +223,8 @@ gnome_canvas_shape_set_path (GnomeCanvasShape *shape, cairo_path_t *path) cairo_path_destroy (priv->path); priv->path = NULL; } + + priv->path = path; } static guint32 |