Rename the gtk-key-bindings property

This is not a standard CSS property, so rename it to
-gtk-key-bindings. We still support the old name, with a
deprecation warning.
This commit is contained in:
Matthias Clasen 2015-11-20 20:34:03 -05:00
parent ba1fb4b0a7
commit d267b8e028
2 changed files with 3 additions and 2 deletions

View File

@ -1445,7 +1445,7 @@ gtk_bindings_activate_list (GObject *object,
state = gtk_widget_get_state_flags (GTK_WIDGET (object)); state = gtk_widget_get_state_flags (GTK_WIDGET (object));
gtk_style_context_get (context, state, gtk_style_context_get (context, state,
"gtk-key-bindings", &array, "-gtk-key-bindings", &array,
NULL); NULL);
if (array) if (array)
{ {

View File

@ -1743,7 +1743,7 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
G_GNUC_END_IGNORE_DEPRECATIONS G_GNUC_END_IGNORE_DEPRECATIONS
/* Private property holding the binding sets */ /* Private property holding the binding sets */
gtk_css_style_property_register ("gtk-key-bindings", gtk_css_style_property_register ("-gtk-key-bindings",
GTK_CSS_PROPERTY_GTK_KEY_BINDINGS, GTK_CSS_PROPERTY_GTK_KEY_BINDINGS,
G_TYPE_PTR_ARRAY, G_TYPE_PTR_ARRAY,
0, 0,
@ -1752,5 +1752,6 @@ G_GNUC_END_IGNORE_DEPRECATIONS
bindings_value_query, bindings_value_query,
bindings_value_assign, bindings_value_assign,
_gtk_css_array_value_new (_gtk_css_string_value_new (NULL))); _gtk_css_array_value_new (_gtk_css_string_value_new (NULL)));
_gtk_style_property_add_alias ("-gtk-key-bindings", "gtk-key-bindings");
} }