summaryrefslogtreecommitdiff
path: root/gladeui
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2020-01-13 20:11:07 -0800
committerChristian Hergert <chergert@redhat.com>2020-01-13 20:11:18 -0800
commita5c583ec483b19b8bb332e4ad24eb57bf11db1f2 (patch)
tree9379c5290b0c83c67976877e71986c13d1806697 /gladeui
parent8689fbaf6868c6a4579f54b98c36638fcffc2a8c (diff)
downloadglade-a5c583ec483b19b8bb332e4ad24eb57bf11db1f2.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
Diffstat (limited to 'gladeui')
-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 f2a77a57..4d954427 100644
--- a/gladeui/glade-widget.c
+++ b/gladeui/glade-widget.c
@@ -1435,7 +1435,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);