* clutter/clutter-container.c: (container_get_child_property):

s/g_object_set_property/g_object_get_property/
This commit is contained in:
Øyvind Kolås 2008-06-03 10:49:49 +00:00
parent dd1a669911
commit 474ae2d17e
2 changed files with 10 additions and 5 deletions

View File

@ -1,9 +1,14 @@
2008-06-03 Øyvind Kolås <pippin@o-hand.com>
* clutter/clutter-container.c: (container_get_child_property):
s/g_object_set_property/g_object_get_property/
2008-06-02 Neil Roberts <neil@o-hand.com>
* clutter/pango/pangoclutter-glyph-cache.c
(pango_clutter_glyph_cache_set): When creating a new band, make
sure the texture is wide enough for the glyph, not just tall
enough.
* clutter/pango/pangoclutter-glyph-cache.c
(pango_clutter_glyph_cache_set): When creating a new band, make
sure the texture is wide enough for the glyph, not just tall
enough.
2008-06-02 Neil Roberts <neil@o-hand.com>

View File

@ -985,7 +985,7 @@ container_get_child_property (ClutterContainer *container,
ClutterChildMeta *data;
data = clutter_container_get_child_meta (container, actor);
g_object_set_property (G_OBJECT (data), pspec->name, value);
g_object_get_property (G_OBJECT (data), pspec->name, value);
}
/**