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/gtklayout.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/gtklayout.c')
-rw-r--r-- | gtk/gtklayout.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gtk/gtklayout.c b/gtk/gtklayout.c index f505278ecf..fe73830b0f 100644 --- a/gtk/gtklayout.c +++ b/gtk/gtklayout.c @@ -137,7 +137,6 @@ static void gtk_layout_add (GtkContainer *container, static void gtk_layout_remove (GtkContainer *container, GtkWidget *widget); static void gtk_layout_forall (GtkContainer *container, - gboolean include_internals, GtkCallback callback, gpointer callback_data); static void gtk_layout_set_child_property (GtkContainer *container, @@ -935,7 +934,6 @@ gtk_layout_remove (GtkContainer *container, static void gtk_layout_forall (GtkContainer *container, - gboolean include_internals, GtkCallback callback, gpointer callback_data) { |