summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2020-01-13 20:11:07 -0800
committerAlberto Fanjul <albertofanjul@gmail.com>2020-02-26 00:05:42 +0100
commitcfeafd05f06e2011d0a91805eab8d1227a4077e8 (patch)
tree6e164d503e956f5c2dcc588c4a4f4fe463db3235
parent9fff02bb39a6a2bfe732da094ef2b09c6cc5fff5 (diff)
downloadglade-cfeafd05f06e2011d0a91805eab8d1227a4077e8.tar.gz
widget: canonicalize support-warning property name
This has been causing issues in Builder recently, preventing users from opening some projects. It appears related to GLib tightening restrictions on property names in GNOME/glib@30e630c9df792cf36cdb1cceb3daefbde1dc898a. Fixes #403
-rw-r--r--gladeui/glade-widget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gladeui/glade-widget.c b/gladeui/glade-widget.c
index e2b38744..a80d300c 100644
--- a/gladeui/glade-widget.c
+++ b/gladeui/glade-widget.c
@@ -1422,7 +1422,7 @@ glade_widget_class_init (GladeWidgetClass *klass)
-1, G_MAXINT, -1, G_PARAM_READWRITE);
properties[PROP_SUPPORT_WARNING] =
- g_param_spec_string ("support warning", _("Support Warning"),
+ g_param_spec_string ("support-warning", _("Support Warning"),
_("A warning string about version mismatches"),
NULL, G_PARAM_READABLE);