]> Pileus Git - ~andy/gtk/commitdiff
More default property value fixes
authorMatthias Clasen <matthiasc@src.gnome.org>
Fri, 28 Dec 2007 19:20:26 +0000 (19:20 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 28 Dec 2007 19:20:26 +0000 (19:20 +0000)
svn path=/trunk/; revision=19280

ChangeLog
gtk/gtktable.c
gtk/gtktreeview.c

index a66f960b58c2dc727a321a5a0c3d8169e0750f72..fad32b17afaa7ddb1956983d6fbf2eba4116e569 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,8 @@
 
 2007-12-28  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtktable.c:
+       * gtk/gtktreeview.c:
        * gtk/gtkprintoperation.c:
        * gtk/gtkprogressbar.c:
        * gtk/gtkmessagedialog.c:
index 6a21603868cae721a9bee7da6b594130d192749d..2b5b6f783430fd55cf78a1859ed5cc450ca9edbd 100644 (file)
@@ -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,
index 90197ec2c13ca68bf0700c6d275b86db036b1e80..85ddd599189caafebc00c865139d195ee2266a0a 100644 (file)
@@ -595,7 +595,7 @@ gtk_tree_view_class_init (GtkTreeViewClass *class)
                                    g_param_spec_boolean ("headers-clickable",
                                                         P_("Headers Clickable"),
                                                         P_("Column headers respond to click events"),
-                                                        FALSE,
+                                                        TRUE,
                                                         GTK_PARAM_READWRITE));
 
   g_object_class_install_property (o_class,