diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-05-18 00:52:39 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-05-18 00:52:39 +0100 |
commit | 19eed06d9ad20121a17a6824297312f2b5ea8a7c (patch) | |
tree | 7e1d3d5f93da5b7f08fb5b4f899f0fe4a00ec8ba /src/sound-service.c | |
parent | d73292111b3c141f62508ffb28971e6c5b36d751 (diff) | |
download | ayatana-indicator-sound-19eed06d9ad20121a17a6824297312f2b5ea8a7c.tar.gz ayatana-indicator-sound-19eed06d9ad20121a17a6824297312f2b5ea8a7c.tar.bz2 ayatana-indicator-sound-19eed06d9ad20121a17a6824297312f2b5ea8a7c.zip |
root menuitem passed in at start up the music-bridge - vapi file for dbusmenuitem need to be fixed
Diffstat (limited to 'src/sound-service.c')
-rw-r--r-- | src/sound-service.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound-service.c b/src/sound-service.c index dad1bcd..db48676 100644 --- a/src/sound-service.c +++ b/src/sound-service.c @@ -70,9 +70,9 @@ main (int argc, char ** argv) INDICATOR_SERVICE_SIGNAL_SHUTDOWN, G_CALLBACK(service_shutdown), NULL); - dbus_menu_manager_setup(); + DbusmenuMenuitem* root_menuitem = dbus_menu_manager_setup(); BridgeServer* server = bridge_server_new(); - bridge_server_test_me(server); + bridge_server_set_root_menu_item(server, root_menuitem); // Run the loop mainloop = g_main_loop_new(NULL, FALSE); |