aboutsummaryrefslogtreecommitdiff
path: root/src/sound-service.c
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2010-05-20 18:50:44 +0100
committerConor Curran <conor.curran@canonical.com>2010-05-20 18:50:44 +0100
commit14d9ed691abf09a2600f978aa7be13f841bc1ce5 (patch)
treeea2456934e0c3a4e6cde256ac6a02229794047fe /src/sound-service.c
parent8e2bd9c87d812a07caaa2c5aba0bbf819b445e56 (diff)
downloadayatana-indicator-sound-14d9ed691abf09a2600f978aa7be13f841bc1ce5.tar.gz
ayatana-indicator-sound-14d9ed691abf09a2600f978aa7be13f841bc1ce5.tar.bz2
ayatana-indicator-sound-14d9ed691abf09a2600f978aa7be13f841bc1ce5.zip
We have clients properly registering and unregistering dynamically
Diffstat (limited to 'src/sound-service.c')
-rw-r--r--src/sound-service.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sound-service.c b/src/sound-service.c
index db48676..84ad7f1 100644
--- a/src/sound-service.c
+++ b/src/sound-service.c
@@ -23,7 +23,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
#include "sound-service.h"
#include "dbus-menu-manager.h"
#include "pulse-manager.h"
-#include "music-bridge.h"
+#include "music-player-bridge.h"
static GMainLoop *mainloop = NULL;
@@ -71,8 +71,8 @@ main (int argc, char ** argv)
G_CALLBACK(service_shutdown), NULL);
DbusmenuMenuitem* root_menuitem = dbus_menu_manager_setup();
- BridgeServer* server = bridge_server_new();
- bridge_server_set_root_menu_item(server, root_menuitem);
+ MusicPlayerBridge* server = music_player_bridge_new();
+ music_player_bridge_set_root_menu_item(server, root_menuitem);
// Run the loop
mainloop = g_main_loop_new(NULL, FALSE);