mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-18 09:00:34 +00:00
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:
parent
f5d9644591
commit
8889565735
@ -410,14 +410,13 @@ gtk_spin_button_class_init (GtkSpinButtonClass *class)
|
||||
PROP_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",
|
||||
"Shadow Type",
|
||||
P_("Shadow Type"),
|
||||
P_("Style of bevel around the spin button"),
|
||||
GTK_TYPE_SHADOW_TYPE,
|
||||
GTK_SHADOW_IN,
|
||||
GTK_PARAM_READABLE),
|
||||
gtk_rc_property_parse_enum);
|
||||
GTK_PARAM_READABLE));
|
||||
|
||||
/**
|
||||
* GtkSpinButton::input:
|
||||
|
Loading…
Reference in New Issue
Block a user