2006-06-23 Emmanuele Bassi <ebassi@openedhand.com>
authorEmmanuele Bassi <ebassi@openedhand.com>
Fri, 23 Jun 2006 10:32:42 +0000 (10:32 +0000)
committerEmmanuele Bassi <ebassi@openedhand.com>
Fri, 23 Jun 2006 10:32:42 +0000 (10:32 +0000)
* clutter/clutter-group.c
(clutter_group_get_children): Mention that you must free
the returned list otherwise you'll leak stuff all around.

ChangeLog
clutter/clutter-group.c

index 46e04d5..6531ab9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-06-23  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * clutter/clutter-group.c
+       (clutter_group_get_children): Mention that you must free
+       the returned list otherwise you'll leak stuff all around.
+
 2006-06-23  Ross Burton  <ross@openedhand.com>
 
        * examples/super-oh.c:
index e4c488b..6b35a54 100644 (file)
@@ -297,8 +297,10 @@ clutter_group_new (void)
  * 
  * Get a list containing all actors contained in the group.
  * 
- * Return value: A GList containing child #ClutterActors.
- **/
+ * Return value: A GList containing child #ClutterActors.  You
+ *   should free the returned list using g_list_free() when
+ *   finished using it.
+ */
 GList*
 clutter_group_get_children (ClutterGroup *self)
 {