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