summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Ernberg <john.ernberg@actia.se>2015-12-22 08:15:29 +0000
committerDenis Kenzior <denkenz@gmail.com>2015-12-22 10:23:44 -0600
commitff476aa06f0a8286043676f0240673785e02c2ab (patch)
treebf916154936b4703081a3cd43e252848d9f0e9c5
parent073197e6db7ff7791ad4deee792326055159e3a4 (diff)
downloadofono-ff476aa06f0a8286043676f0240673785e02c2ab.tar.bz2
gprs: Fix the ContextAdded() signal Introspection
This matches the behavior described by the documentation the signal value returned by the code. This was causing a headache when using stricter D-Bus wrappers like dbus-c++.
-rw-r--r--src/gprs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gprs.c b/src/gprs.c
index ba797dd5..9192e683 100644
--- a/src/gprs.c
+++ b/src/gprs.c
@@ -2385,7 +2385,7 @@ static const GDBusSignalTable manager_signals[] = {
{ GDBUS_SIGNAL("PropertyChanged",
GDBUS_ARGS({ "name", "s" }, { "value", "v" })) },
{ GDBUS_SIGNAL("ContextAdded",
- GDBUS_ARGS({ "path", "o" }, { "properties", "v" })) },
+ GDBUS_ARGS({ "path", "o" }, { "properties", "a{sv}" })) },
{ GDBUS_SIGNAL("ContextRemoved", GDBUS_ARGS({ "path", "o" })) },
{ }
};