diff options
author | Timm Bäder <mail@baedert.org> | 2017-04-22 22:16:27 +0200 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2017-04-25 20:30:37 +0200 |
commit | f053a63d7480d1b15e4d556ba48461ee3426dc49 (patch) | |
tree | 0cb40b0a560d66463d372fa03c7770a270652a16 /gtk/gtkstack.c | |
parent | 066c1983ba2c6f1f891e600c561ab03eac2074a6 (diff) | |
download | gtk+-f053a63d7480d1b15e4d556ba48461ee3426dc49.tar.gz |
container: Remove include_internals parameter from forall
with include_internals=TRUE, this is the same as the (still private)
gtk_widget_forall, or just using the children/sibling accessors in a
loop.
Diffstat (limited to 'gtk/gtkstack.c')
-rw-r--r-- | gtk/gtkstack.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gtk/gtkstack.c b/gtk/gtkstack.c index b1617297c4..2171cfc8be 100644 --- a/gtk/gtkstack.c +++ b/gtk/gtkstack.c @@ -169,7 +169,6 @@ static void gtk_stack_add (GtkContainer *widget, static void gtk_stack_remove (GtkContainer *widget, GtkWidget *child); static void gtk_stack_forall (GtkContainer *container, - gboolean include_internals, GtkCallback callback, gpointer callback_data); static void gtk_stack_compute_expand (GtkWidget *widget, @@ -1852,7 +1851,6 @@ gtk_stack_set_visible_child_full (GtkStack *stack, static void gtk_stack_forall (GtkContainer *container, - gboolean include_internals, GtkCallback callback, gpointer callback_data) { |