diff options
author | Timm Bäder <mail@baedert.org> | 2018-12-26 08:20:34 +0100 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-01-23 19:30:46 -0500 |
commit | bd71e744d2e5dbd853f0c719dd3ebe6abb2f72b6 (patch) | |
tree | 6478bd038c42a535caacf65f948892a9d0dfe5e9 /gtk/gtkcontainer.c | |
parent | 09361e76659bd1951a222cd64537abacc6a6f44a (diff) | |
download | gtk+-bd71e744d2e5dbd853f0c719dd3ebe6abb2f72b6.tar.gz |
Stop using gtk_box_pack_end
It might soon go away!
Diffstat (limited to 'gtk/gtkcontainer.c')
-rw-r--r-- | gtk/gtkcontainer.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c index 20f75f4ca7..d4a3b9b589 100644 --- a/gtk/gtkcontainer.c +++ b/gtk/gtkcontainer.c @@ -1286,12 +1286,12 @@ gtk_container_destroy (GtkWidget *widget) * * Adds @widget to @container. Typically used for simple containers * such as #GtkWindow, #GtkFrame, or #GtkButton; for more complicated - * layout containers such as #GtkBox or #GtkGrid, this function will + * layout containers such #GtkGrid, this function will * pick default packing parameters that may not be correct. So - * consider functions such as gtk_box_pack_start() and - * 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. + * consider functions such as 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 |