aboutsummaryrefslogtreecommitdiff
path: root/src/music-player-bridge.vala
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2011-01-27 17:08:08 -0600
committerConor Curran <conor.curran@canonical.com>2011-01-27 17:08:08 -0600
commitb03499a823ded3f262aa065ee24b3e30a4cf0ca3 (patch)
tree53e523624e195a02084e78153638aa2e1df1fe73 /src/music-player-bridge.vala
parent4e0d98ea31ff315c03d2a297af0743cd92acfedf (diff)
downloadayatana-indicator-sound-b03499a823ded3f262aa065ee24b3e30a4cf0ca3.tar.gz
ayatana-indicator-sound-b03499a823ded3f262aa065ee24b3e30a4cf0ca3.tar.bz2
ayatana-indicator-sound-b03499a823ded3f262aa065ee24b3e30a4cf0ca3.zip
playlist fetching is now async and some compilation warnings sorted
Diffstat (limited to 'src/music-player-bridge.vala')
-rw-r--r--src/music-player-bridge.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/music-player-bridge.vala b/src/music-player-bridge.vala
index 7587684..c167e08 100644
--- a/src/music-player-bridge.vala
+++ b/src/music-player-bridge.vala
@@ -141,8 +141,8 @@ public class MusicPlayerBridge : GLib.Object
this.root_menu = menu;
this.try_to_add_inactive_familiar_clients();
this.watcher = new Mpris2Watcher ();
- this.watcher.client_appeared += this.client_has_become_available;
- this.watcher.client_disappeared += this.client_has_vanished;
+ this.watcher.client_appeared.connect (this.client_has_become_available);
+ this.watcher.client_disappeared.connect (this.client_has_vanished);
}
private static AppInfo? create_app_info ( string desktop )