summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Müllner <fmuellner@gnome.org>2019-12-19 13:37:49 +0100
committerAlexander Akulich <akulichalexander@gmail.com>2020-02-21 02:19:24 +0300
commitada99a651ea8994aa198b2504bdf30c641c7f83a (patch)
tree3de55884b95d8868825b32dfe123fc27d8030cf6
parent5de9c50b0353f10b2fd7b1a6980c37bd7cb1b4dc (diff)
downloadtelepathy-mission-control-ada99a651ea8994aa198b2504bdf30c641c7f83a.tar.gz
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.
-rw-r--r--src/mcd-account.c2
1 files changed, 1 insertions, 1 deletions
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,