* clutter/clutter-container.c: (container_get_child_property):
authorØyvind Kolås <pippin@openedhand.com>
Tue, 3 Jun 2008 10:49:49 +0000 (10:49 +0000)
committerØyvind Kolås <pippin@openedhand.com>
Tue, 3 Jun 2008 10:49:49 +0000 (10:49 +0000)
s/g_object_set_property/g_object_get_property/

ChangeLog
clutter/clutter-container.c

index 0537772..a7f821c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
index aa6c240..fd37843 100644 (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);
 }
 
 /**