From 5abff7bd4c2da480578a1a44a128950e994c4ae8 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 30 Sep 2013 20:53:19 -0400 Subject: [PATCH] Improve gtk_container_add docs Mention that some containers add intermediate children automatically. --- gtk/gtkcontainer.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c index b3b1094223..82fda082a6 100644 --- a/gtk/gtkcontainer.c +++ b/gtk/gtkcontainer.c @@ -1520,7 +1520,11 @@ gtk_container_get_border_width (GtkContainer *container) * gtk_grid_attach() as an alternative to gtk_container_add() in * those cases. A widget may be added to only one container at a time; * you can't place the same widget inside two different containers. - **/ + * + * Note that some containers, such as #GtkScrolledWindow or #GtkListBox, + * may add intermediate children between the added widget and the + * container. + */ void gtk_container_add (GtkContainer *container, GtkWidget *widget)