diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-06-25 16:52:48 +0200 |
---|---|---|
committer | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-06-25 16:52:48 +0200 |
commit | b942b3f993ce9bc89ff04ad7a79878902fd1922f (patch) | |
tree | b8122aa280edc0e7e86a6b461291abf6c51e4507 | |
parent | 27dbefcc92d9c91bb090f94ba64910867baa605b (diff) | |
download | ayatana-indicator-messages-b942b3f993ce9bc89ff04ad7a79878902fd1922f.tar.gz ayatana-indicator-messages-b942b3f993ce9bc89ff04ad7a79878902fd1922f.tar.bz2 ayatana-indicator-messages-b942b3f993ce9bc89ff04ad7a79878902fd1922f.zip |
Set user_data that action handlers expect
-rw-r--r-- | src/messages-service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messages-service.c b/src/messages-service.c index fcceb58..203156e 100644 --- a/src/messages-service.c +++ b/src/messages-service.c @@ -336,7 +336,7 @@ main (int argc, char ** argv) } actions = g_simple_action_group_new (); - g_simple_action_group_add_entries (actions, entries, G_N_ELEMENTS (entries), NULL); + g_simple_action_group_add_entries (actions, entries, G_N_ELEMENTS (entries), dbus_interface); action_muxer = g_action_muxer_new (); g_action_muxer_insert (action_muxer, NULL, G_ACTION_GROUP (actions)); |