diff options
author | Ted Gould <ted@gould.cx> | 2011-01-31 15:52:26 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-01-31 15:52:26 -0600 |
commit | 284b6b17cfc3b0be1f371c4787eec795c166c7ca (patch) | |
tree | b79c3891b3af838a4f36857ac61044e5e81bf138 /libdbusmenu-glib/server.c | |
parent | 6022220a0c208d0fea140ed3ed80e1806983f3b9 (diff) | |
parent | 6c339510a684ba9a8f01fc57188bb4953be0e30b (diff) | |
download | libdbusmenu-284b6b17cfc3b0be1f371c4787eec795c166c7ca.tar.gz libdbusmenu-284b6b17cfc3b0be1f371c4787eec795c166c7ca.tar.bz2 libdbusmenu-284b6b17cfc3b0be1f371c4787eec795c166c7ca.zip |
* New upstream release.
* Fix crashes on rapidly creating and destroying client
and menu objects (LP: #709754)
* Fix dynamically changed submenus to get the parsed
(LP: #696896)
* Fix bad signature on GetProperties with no hits
Diffstat (limited to 'libdbusmenu-glib/server.c')
-rw-r--r-- | libdbusmenu-glib/server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdbusmenu-glib/server.c b/libdbusmenu-glib/server.c index adb9f91..777e4ef 100644 --- a/libdbusmenu-glib/server.c +++ b/libdbusmenu-glib/server.c @@ -946,9 +946,9 @@ bus_get_group_properties (DbusmenuServer * server, GVariant * params, GDBusMetho ret = g_variant_builder_end(&builder); } else { GError * error = NULL; - ret = g_variant_parse(g_variant_type_new("a(ia(sv))"), "[]", NULL, NULL, NULL); + ret = g_variant_parse(g_variant_type_new("a(ia{sv})"), "[]", NULL, NULL, NULL); if (error != NULL) { - g_warning("Unable to parse '[]' as a 'a(ia(sv))': %s", error->message); + g_warning("Unable to parse '[]' as a 'a(ia{sv})': %s", error->message); g_error_free(error); ret = NULL; } |