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.
This commit is contained in:
Emmanuele Bassi 2006-06-23 10:32:42 +00:00
parent ff1152e3b1
commit c38bbd2708
2 changed files with 10 additions and 2 deletions

View File

@ -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:

View 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)
{