From 6bfb299f30c9087edee711c181fa2f8d0ceb0427 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 28 Dec 2007 19:20:26 +0000 Subject: More default property value fixes svn path=/trunk/; revision=19280 --- gtk/gtktable.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gtk/gtktable.c') 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, -- cgit v1.2.1