diff options
| author | Ted Gould <ted@gould.cx> | 2010-11-29 15:19:31 -0600 |
|---|---|---|
| committer | Ted Gould <ted@gould.cx> | 2010-11-29 15:19:31 -0600 |
| commit | 7a12cdc4cff4546e911bd49fd38b6fed9511d506 (patch) | |
| tree | 6136ee2765f1e69b24149e4ba6ec0ec73b252e4f /libdbusmenu-glib/client.c | |
| parent | 611103533121afca614b2e531c5e113a1a6122f4 (diff) | |
| download | libdbusmenu-7a12cdc4cff4546e911bd49fd38b6fed9511d506.tar.gz libdbusmenu-7a12cdc4cff4546e911bd49fd38b6fed9511d506.tar.bz2 libdbusmenu-7a12cdc4cff4546e911bd49fd38b6fed9511d506.zip | |
Fixing the return values from AboutToShow
Diffstat (limited to 'libdbusmenu-glib/client.c')
| -rw-r--r-- | libdbusmenu-glib/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdbusmenu-glib/client.c b/libdbusmenu-glib/client.c index a918f43..7a6d87c 100644 --- a/libdbusmenu-glib/client.c +++ b/libdbusmenu-glib/client.c @@ -1287,7 +1287,7 @@ about_to_show_cb (GObject * proxy, GAsyncResult * res, gpointer userdata) /* Note: we're just ensuring only the callback gets called */ need_update = FALSE; } else { - g_variant_get(params, "b", &need_update); + g_variant_get(params, "(b)", &need_update); g_variant_unref(params); } |
