From ada99a651ea8994aa198b2504bdf30c641c7f83a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 19 Dec 2019 13:37:49 +0100 Subject: account: Fix property name Spaces are not valid characters in property names, and never were. Until recently GLib silently fixed up the name by replacing the space with '-', but now tightened up the validation. --- src/mcd-account.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mcd-account.c b/src/mcd-account.c index f02c80d2..79275fa2 100644 --- a/src/mcd-account.c +++ b/src/mcd-account.c @@ -3753,7 +3753,7 @@ mcd_account_class_init (McdAccountClass * klass) g_object_class_install_property (object_class, PROP_CONNECTIVITY_MONITOR, - g_param_spec_object ("connectivity monitor", + g_param_spec_object ("connectivity-monitor", "Connectivity monitor", "Connectivity monitor", MCD_TYPE_CONNECTIVITY_MONITOR, -- cgit v1.2.1