Fix default property values

svn path=/trunk/; revision=19273
This commit is contained in:
Matthias Clasen 2007-12-28 15:46:18 +00:00
parent b78baef499
commit fb161a603f
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2007-12-28 Matthias Clasen <mclasen@redhat.com> 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/gtkfontsel.c: Fix the default values of several properties.
* gtk/gtkfilesel.c: Fix the default value of the show-fileops * gtk/gtkfilesel.c: Fix the default value of the show-fileops

View File

@ -168,7 +168,7 @@ gtk_handle_box_class_init (GtkHandleBoxClass *class)
g_param_spec_enum ("shadow", NULL, g_param_spec_enum ("shadow", NULL,
P_("Deprecated property, use shadow_type instead"), P_("Deprecated property, use shadow_type instead"),
GTK_TYPE_SHADOW_TYPE, GTK_TYPE_SHADOW_TYPE,
GTK_SHADOW_ETCHED_OUT, GTK_SHADOW_OUT,
GTK_PARAM_READWRITE)); GTK_PARAM_READWRITE));
g_object_class_install_property (gobject_class, g_object_class_install_property (gobject_class,
PROP_SHADOW_TYPE, PROP_SHADOW_TYPE,
@ -176,7 +176,7 @@ gtk_handle_box_class_init (GtkHandleBoxClass *class)
P_("Shadow type"), P_("Shadow type"),
P_("Appearance of the shadow that surrounds the container"), P_("Appearance of the shadow that surrounds the container"),
GTK_TYPE_SHADOW_TYPE, GTK_TYPE_SHADOW_TYPE,
GTK_SHADOW_ETCHED_OUT, GTK_SHADOW_OUT,
GTK_PARAM_READWRITE)); GTK_PARAM_READWRITE));
g_object_class_install_property (gobject_class, g_object_class_install_property (gobject_class,