GtkSpinButton: Simplify code

No need to explicitly specify a parser function, it will be
correctly guessed from the property type.
This commit is contained in:
Matthias Clasen 2014-10-19 22:07:19 -04:00
parent f5d9644591
commit 8889565735

View File

@ -410,14 +410,13 @@ gtk_spin_button_class_init (GtkSpinButtonClass *class)
PROP_ORIENTATION, PROP_ORIENTATION,
"orientation"); "orientation");
gtk_widget_class_install_style_property_parser (widget_class, gtk_widget_class_install_style_property (widget_class,
g_param_spec_enum ("shadow-type", g_param_spec_enum ("shadow-type",
"Shadow Type", P_("Shadow Type"),
P_("Style of bevel around the spin button"), P_("Style of bevel around the spin button"),
GTK_TYPE_SHADOW_TYPE, GTK_TYPE_SHADOW_TYPE,
GTK_SHADOW_IN, GTK_SHADOW_IN,
GTK_PARAM_READABLE), GTK_PARAM_READABLE));
gtk_rc_property_parse_enum);
/** /**
* GtkSpinButton::input: * GtkSpinButton::input: