diff options
Diffstat (limited to 'gtk/gtktable.c')
-rw-r--r-- | gtk/gtktable.c | 8 |
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, |