diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2007-12-28 19:20:26 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2007-12-28 19:20:26 +0000 |
commit | 6bfb299f30c9087edee711c181fa2f8d0ceb0427 (patch) | |
tree | a570d3b02a5946db03e2fb56289c56e40978519d /gtk/gtktable.c | |
parent | b9a505b10c990247b970cfffc937eefe2114a8c2 (diff) | |
download | gtk+-6bfb299f30c9087edee711c181fa2f8d0ceb0427.tar.gz |
More default property value fixes
svn path=/trunk/; revision=19280
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 6a21603868..2b5b6f7834 100644 --- a/gtk/gtktable.c +++ b/gtk/gtktable.c @@ -128,18 +128,18 @@ gtk_table_class_init (GtkTableClass *class) g_param_spec_uint ("n-rows", P_("Rows"), P_("The number of rows in the table"), - 0, + 1, G_MAXUINT, - 0, + 1, GTK_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_N_COLUMNS, g_param_spec_uint ("n-columns", P_("Columns"), P_("The number of columns in the table"), - 0, + 1, G_MAXUINT, - 0, + 1, GTK_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_ROW_SPACING, |