summaryrefslogtreecommitdiff
path: root/gtk/gtktable.c
diff options
context:
space:
mode:
authorSoeren Sandmann <sandmann@daimi.au.dk>2002-10-13 17:17:14 +0000
committerSøren Sandmann Pedersen <ssp@src.gnome.org>2002-10-13 17:17:14 +0000
commita130f089ca10ce2b6f20ce309527e900d0bafebf (patch)
tree5fb1ae515388f4bea2af409b0b899f2dabc2f851 /gtk/gtktable.c
parent7fe315b58d537e33eeda68b163771aed94699488 (diff)
downloadgtk+-a130f089ca10ce2b6f20ce309527e900d0bafebf.tar.gz
Documentation fixes.
Sun Oct 13 18:50:14 2002 Soeren Sandmann <sandmann@daimi.au.dk> * gtkmenu.c, gtkmenu.sgml, gtkitemfactory.c, gdkwindow.c, gtkwindow.c, gtkpaned.sgml, gtkdialog.c, gtkbox.h, gtkbutton.sgml, gtktreemodel.sgml,gtktable.sgml, gtktable.c: Documentation fixes. #85719, #90759, #95169, Owen Taylor; #89221, Yao Zhang, Matthias Clasen; #95592, Joost Faassen; #92637, Vitaly Tishkov; #94616, Ben Martin; #94772, sbaillie@bigpond.net.au;
Diffstat (limited to 'gtk/gtktable.c')
-rw-r--r--gtk/gtktable.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtktable.c b/gtk/gtktable.c
index 8b473f19b1..f10578a949 100644
--- a/gtk/gtktable.c
+++ b/gtk/gtktable.c
@@ -200,28 +200,28 @@ gtk_table_class_init (GtkTableClass *class)
CHILD_PROP_LEFT_ATTACH,
g_param_spec_uint ("left_attach",
_("Left attachment"),
- _("The leftmost column of the child"),
+ _("The column number to attach the left side of the child to"),
0, 65535, 0,
G_PARAM_READWRITE));
gtk_container_class_install_child_property (container_class,
CHILD_PROP_RIGHT_ATTACH,
g_param_spec_uint ("right_attach",
_("Right attachment"),
- _("The rightmost column of the child"),
+ _("the column number to attach the right side of a child widget to"),
1, 65535, 1,
G_PARAM_READWRITE));
gtk_container_class_install_child_property (container_class,
CHILD_PROP_TOP_ATTACH,
g_param_spec_uint ("top_attach",
_("Top attachment"),
- _("The uppermost row of the child"),
+ _("The row number to attach the top of a child widget to"),
0, 65535, 0,
G_PARAM_READWRITE));
gtk_container_class_install_child_property (container_class,
CHILD_PROP_BOTTOM_ATTACH,
g_param_spec_uint ("bottom_attach",
_("Bottom attachment"),
- _("The lowest row of the child"),
+ _("The row number to attach the bottom of the child to"),
1, 65535, 1,
G_PARAM_READWRITE));
gtk_container_class_install_child_property (container_class,