diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-08-23 23:38:32 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-08-23 23:38:32 +0000 |
commit | 991a7188ed0881bd5c1d26ef163bab13524baa60 (patch) | |
tree | ba467bbff4d8490276adaca70cc1087e3d1cfe00 /gtk/gtkdialog.c | |
parent | f0f3c6bfd28f66aebd5bf611056849cca647f7f6 (diff) | |
download | gtk+-991a7188ed0881bd5c1d26ef163bab13524baa60.tar.gz |
Rename gtk_container_children() to gtk_container_get_children. Added
Thu Aug 23 19:33:54 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcontainer.[ch]: Rename gtk_container_children()
to gtk_container_get_children. Added deprecated compatibility
macro. (Suggested by Vitaly Tishkov, #59051)
* gtk/gtktoolbar.c gtkdialog.c: Fix gtk_container_children()
calls.
Diffstat (limited to 'gtk/gtkdialog.c')
-rw-r--r-- | gtk/gtkdialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkdialog.c b/gtk/gtkdialog.c index 8e77e60efc..15398ce199 100644 --- a/gtk/gtkdialog.c +++ b/gtk/gtkdialog.c @@ -631,7 +631,7 @@ gtk_dialog_set_response_sensitive (GtkDialog *dialog, GList *children; GList *tmp_list; - children = gtk_container_children (GTK_CONTAINER (dialog)); + children = gtk_container_get_children (GTK_CONTAINER (dialog)); tmp_list = children; while (tmp_list != NULL) @@ -666,7 +666,7 @@ gtk_dialog_set_default_response (GtkDialog *dialog, GList *children; GList *tmp_list; - children = gtk_container_children (GTK_CONTAINER (dialog->action_area)); + children = gtk_container_get_children (GTK_CONTAINER (dialog->action_area)); tmp_list = children; while (tmp_list != NULL) |