summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2009-11-09 09:04:57 +0100
committerJavier Jardón <jjardon@gnome.org>2010-05-03 01:51:19 +0200
commit8d9e37f40777118d55086ad329318f6657e62397 (patch)
tree2b3e590b904e37ef17ebcf2226891d9c6af8fbf9 /examples
parent72323e6d9a9dd7f34d9da47c3f4d951a958e32bc (diff)
downloadgtk+-8d9e37f40777118d55086ad329318f6657e62397.tar.gz
Remove all deprecated stuff from GtkContainer
Diffstat (limited to 'examples')
-rw-r--r--examples/list/list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/list/list.c b/examples/list/list.c
index 8d0d97b408..c5aa2130ec 100644
--- a/examples/list/list.c
+++ b/examples/list/list.c
@@ -193,9 +193,9 @@ void sigh_button_event( GtkWidget *gtklist,
/* Look for already imprisoned list items, we
* will put them back into the list.
* Remember to free the doubly linked list that
- * gtk_container_children() returns
+ * gtk_container_get_children() returns
*/
- dlist = gtk_container_children (GTK_CONTAINER (frame));
+ dlist = gtk_container_get_children (GTK_CONTAINER (frame));
free_list = dlist;
while (dlist) {
GtkWidget *list_item;