diff --git a/ChangeLog b/ChangeLog index 053777207..a7f821c5b 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 aa6c24026..fd378435e 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); } /**