summaryrefslogtreecommitdiff
path: root/gtk/gtkcontainer.c
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2011-09-29 12:36:39 +0100
committerJavier Jardón <jjardon@gnome.org>2011-09-29 12:38:49 +0100
commitb0a7db76fb6b11c3a2febad3facb3f2d0073dbec (patch)
treed0ff3185e4d94ac3561e2f7364bf19bc53839aee /gtk/gtkcontainer.c
parentbdfa05bc811bf78311ee986ba03115c3154d6341 (diff)
downloadgtk+-b0a7db76fb6b11c3a2febad3facb3f2d0073dbec.tar.gz
Replace some references to the GtkTable, use GtkGrid instead
Diffstat (limited to 'gtk/gtkcontainer.c')
-rw-r--r--gtk/gtkcontainer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c
index f53e8a5d3c..7ada895fc4 100644
--- a/gtk/gtkcontainer.c
+++ b/gtk/gtkcontainer.c
@@ -73,7 +73,7 @@
* The second type of container can have more than one child; its purpose is to
* manage <emphasis>layout</emphasis>. This means that these containers assign
* sizes and positions to their children. For example, a #GtkHBox arranges its
- * children in a horizontal row, and a #GtkTable arranges the widgets it contains
+ * children in a horizontal row, and a #GtkGrid arranges the widgets it contains
* in a two-dimensional grid.
*
* <refsect2 id="container-geometry-management">
@@ -1481,10 +1481,10 @@ gtk_container_get_border_width (GtkContainer *container)
*
* Adds @widget to @container. Typically used for simple containers
* such as #GtkWindow, #GtkFrame, or #GtkButton; for more complicated
- * layout containers such as #GtkBox or #GtkTable, this function will
+ * layout containers such as #GtkBox or #GtkGrid, this function will
* pick default packing parameters that may not be correct. So
* consider functions such as gtk_box_pack_start() and
- * gtk_table_attach() as an alternative to gtk_container_add() in
+ * 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.
**/