From: Øyvind Kolås Date: Tue, 3 Jun 2008 10:49:49 +0000 (+0000) Subject: * clutter/clutter-container.c: (container_get_child_property): X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=474ae2d17eac3cddc7d8a9a63c325c86d9dca023;p=profile%2Fivi%2Fclutter.git * clutter/clutter-container.c: (container_get_child_property): s/g_object_set_property/g_object_get_property/ --- diff --git a/ChangeLog b/ChangeLog index 0537772..a7f821c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,14 @@ +2008-06-03 Øyvind KolÃ¥s + + * clutter/clutter-container.c: (container_get_child_property): + s/g_object_set_property/g_object_get_property/ + 2008-06-02 Neil Roberts - * 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 diff --git a/clutter/clutter-container.c b/clutter/clutter-container.c index aa6c240..fd37843 100644 --- a/clutter/clutter-container.c +++ b/clutter/clutter-container.c @@ -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); } /**