diff options
author | Ted Gould <ted@gould.cx> | 2011-08-24 16:06:44 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-08-24 16:06:44 -0500 |
commit | a7410814b3cc59fb203962a6fcb1ae6ec9111103 (patch) | |
tree | 536b91d7c7218a81c4e96f9b3bd3db996a08c786 /libdbusmenu-glib | |
parent | 19995f4cf53da3615e55e8e0d4850654ac23e167 (diff) | |
parent | 7fbfd4e5ecb550ebe49ccd366bd268868ae682d0 (diff) | |
download | libdbusmenu-a7410814b3cc59fb203962a6fcb1ae6ec9111103.tar.gz libdbusmenu-a7410814b3cc59fb203962a6fcb1ae6ec9111103.tar.bz2 libdbusmenu-a7410814b3cc59fb203962a6fcb1ae6ec9111103.zip |
Fix signatures on signals
Diffstat (limited to 'libdbusmenu-glib')
-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 f81b3ed..c7057df 100644 --- a/libdbusmenu-glib/server.c +++ b/libdbusmenu-glib/server.c @@ -976,10 +976,10 @@ menuitem_property_idle (gpointer user_data) gotsomething = TRUE; } else { GError * error = NULL; - megadata[1] = g_variant_parse(G_VARIANT_TYPE("a(ia(s))"), "[ ]", NULL, NULL, &error); + megadata[1] = g_variant_parse(G_VARIANT_TYPE("a(ias)"), "[ ]", NULL, NULL, &error); if (error != NULL) { - g_warning("Unable to parse '[ ]' as a 'a(ia(s))': %s", error->message); + g_warning("Unable to parse '[ ]' as a 'a(ias)': %s", error->message); g_error_free(error); } } |