summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominique Leuenberger <dimstar@opensuse.org>2020-04-27 12:08:55 +0200
committerGitHub <noreply@github.com>2020-04-27 12:08:55 +0200
commit68776320108215228552fe93f5b1a0b828a656b4 (patch)
treec3acb4c1bf29694cc61a276696ef6c6d41b63226
parent7183ef0d3e63bf27bdae24219fbf5c5210da791b (diff)
parent29c908647eec8e05674ba1c298d4f1c565d9f872 (diff)
downloadlibproxy-git-68776320108215228552fe93f5b1a0b828a656b4.tar.gz
Merge pull request #113 from tintou/master
pxgsettings: use the correct syntax to connect to the changed signal
-rw-r--r--libproxy/modules/pxgsettings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libproxy/modules/pxgsettings.cpp b/libproxy/modules/pxgsettings.cpp
index 9ed4333..0db5a6a 100644
--- a/libproxy/modules/pxgsettings.cpp
+++ b/libproxy/modules/pxgsettings.cpp
@@ -158,7 +158,7 @@ int main(int argc, char **argv) {
#else
gchar** keys = g_settings_list_keys(settings);
#endif
- g_signal_connect(settings, "changed::", G_CALLBACK (on_value_change), argv[i]);
+ g_signal_connect(settings, "changed", G_CALLBACK (on_value_change), argv[i]);
for (int j=0; keys[j]; on_value_change(settings, keys[j++],argv[i] ));
g_strfreev(keys);
}