]> Pileus Git - ~andy/gtk/commitdiff
Fix default property values
authorMatthias Clasen <matthiasc@src.gnome.org>
Fri, 28 Dec 2007 15:46:18 +0000 (15:46 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 28 Dec 2007 15:46:18 +0000 (15:46 +0000)
svn path=/trunk/; revision=19273

ChangeLog
gtk/gtkhandlebox.c

index 0d02e2627bd823902c812917aa8f03baa9ddc76f..4340095868cae38da74f00d0633c57b47a63d556 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2007-12-28  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkhandlebox.c: Fix the default values of shadow and 
+       shadow-type properties.
+
        * gtk/gtkfontsel.c: Fix the default values of several properties.
 
        * gtk/gtkfilesel.c: Fix the default value of the show-fileops
index ed78a6ff08d2d2815fcd391c633a51ac691ce419..6036dfdc72e1d91a5eb97043b1a8382b4c55b7f5 100644 (file)
@@ -168,7 +168,7 @@ gtk_handle_box_class_init (GtkHandleBoxClass *class)
                                    g_param_spec_enum ("shadow", NULL,
                                                       P_("Deprecated property, use shadow_type instead"),
                                                      GTK_TYPE_SHADOW_TYPE,
-                                                     GTK_SHADOW_ETCHED_OUT,
+                                                     GTK_SHADOW_OUT,
                                                       GTK_PARAM_READWRITE));
   g_object_class_install_property (gobject_class,
                                    PROP_SHADOW_TYPE,
@@ -176,7 +176,7 @@ gtk_handle_box_class_init (GtkHandleBoxClass *class)
                                                       P_("Shadow type"),
                                                       P_("Appearance of the shadow that surrounds the container"),
                                                      GTK_TYPE_SHADOW_TYPE,
-                                                     GTK_SHADOW_ETCHED_OUT,
+                                                     GTK_SHADOW_OUT,
                                                       GTK_PARAM_READWRITE));
   
   g_object_class_install_property (gobject_class,