diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2010-10-14 10:40:12 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2010-10-14 10:40:12 -0400 |
commit | 7620afcd008217151fc02d6440df9741ed3d7e48 (patch) | |
tree | 529ffd73ebd0c0c50d857fa0f849218aeca1aa03 /src/player-controller.vala | |
parent | aeb17c8f7825a68e367c50421f89695d41fcd5fb (diff) | |
parent | 8067376fb719ac5bf577a3e85d080eec765ec465 (diff) | |
download | ayatana-indicator-sound-7620afcd008217151fc02d6440df9741ed3d7e48.tar.gz ayatana-indicator-sound-7620afcd008217151fc02d6440df9741ed3d7e48.tar.bz2 ayatana-indicator-sound-7620afcd008217151fc02d6440df9741ed3d7e48.zip |
Import upstream version 0.4.9
Diffstat (limited to 'src/player-controller.vala')
-rw-r--r-- | src/player-controller.vala | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/player-controller.vala b/src/player-controller.vala index d5b79e7..ad8e989 100644 --- a/src/player-controller.vala +++ b/src/player-controller.vala @@ -44,6 +44,7 @@ public class PlayerController : GLib.Object private Dbusmenu.Menuitem root_menu; public string name { get; set;} + public string mpris_name { get; set;} public ArrayList<PlayerItem> custom_items; public Mpris2Controller mpris_bridge; public AppInfo? app_info { get; set;} @@ -51,11 +52,13 @@ public class PlayerController : GLib.Object public PlayerController(Dbusmenu.Menuitem root, string client_name, + string mpris_name, int offset, state initial_state) { this.root_menu = root; this.name = format_client_name(client_name.strip()); + this.mpris_name = mpris_name; this.custom_items = new ArrayList<PlayerItem>(); this.current_state = initial_state; this.menu_offset = offset; |