diff options
author | Milan Crha <mcrha@redhat.com> | 2013-08-09 17:52:59 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2013-08-09 17:52:59 +0800 |
commit | 00983c3fa9e1a382152195eacb8528b05edf73c4 (patch) | |
tree | e12ef308edf423148ce4341a4a821b398b3a91b2 /libgnomecanvas | |
parent | bdcbed96688ff521269d437b44d6dc2047806196 (diff) | |
download | gsoc2013-evolution-00983c3fa9e1a382152195eacb8528b05edf73c4.tar.gz gsoc2013-evolution-00983c3fa9e1a382152195eacb8528b05edf73c4.tar.zst gsoc2013-evolution-00983c3fa9e1a382152195eacb8528b05edf73c4.zip |
GnomeCanvasRect: Incorrectly named fill_color_rgba property
While all the code references fill_color_rgba, the object itself
defined property's name "fill_rgba", which produced runtime
warnings and misbehavior.
Diffstat (limited to 'libgnomecanvas')
-rw-r--r-- | libgnomecanvas/gnome-canvas-rect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgnomecanvas/gnome-canvas-rect.c b/libgnomecanvas/gnome-canvas-rect.c index 487b7e23ae..fde76b70be 100644 --- a/libgnomecanvas/gnome-canvas-rect.c +++ b/libgnomecanvas/gnome-canvas-rect.c @@ -595,7 +595,7 @@ gnome_canvas_rect_class_init (GnomeCanvasRectClass *class) object_class, PROP_FILL_COLOR_RGBA, g_param_spec_uint ( - "fill_rgba", + "fill_color_rgba", NULL, NULL, 0, |