diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-08-13 19:12:45 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-08-13 19:12:45 +0100 |
commit | 04af32d9b321d4256cb1f7cf1f94b23387b75774 (patch) | |
tree | d866f128b1bbdb99c0b1d55f15770369ed270817 /src/mpris2-controller.vala | |
parent | f648465adb85a872c97bdb9b9a7d638cb8803049 (diff) | |
download | ayatana-indicator-sound-04af32d9b321d4256cb1f7cf1f94b23387b75774.tar.gz ayatana-indicator-sound-04af32d9b321d4256cb1f7cf1f94b23387b75774.tar.bz2 ayatana-indicator-sound-04af32d9b321d4256cb1f7cf1f94b23387b75774.zip |
a few tidy ups
Diffstat (limited to 'src/mpris2-controller.vala')
-rw-r--r-- | src/mpris2-controller.vala | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/mpris2-controller.vala b/src/mpris2-controller.vala index fb17bea..cfe0d68 100644 --- a/src/mpris2-controller.vala +++ b/src/mpris2-controller.vala @@ -58,7 +58,6 @@ public class Mpris2Controller : GLib.Object public MprisPlayer mpris2_player {get; construct;} public PlayerController owner {get; construct;} - public Mpris2Controller(PlayerController ctrl) { Object(owner: ctrl); @@ -86,7 +85,7 @@ public class Mpris2Controller : GLib.Object } public void property_changed(Object mpris_player, ParamSpec new_status){ - debug("playback status changed, %s", new_status.get_name()); + debug("playback status changed, %s", new_status.get_name()); } public bool was_successfull(){ @@ -153,8 +152,7 @@ public class Mpris2Controller : GLib.Object } public void set_position(double position) - { - /* + { debug("Set position with pos (0-100) %f", position); HashTable<string, Value?> data = this.mpris2_player.Metadata; Value? time_value = data.lookup("time"); @@ -175,9 +173,8 @@ public class Mpris2Controller : GLib.Object else if(v.holds (typeof (string))){ debug("the trackid = %s", v.get_string()); } - } - - //this.mpris2_player.SetPosition((int32)(new_time_position)); + } + /*this.mpris2_player.SetPosition((int32)(new_time_position)); ScrubMenuitem scrub = this.owner.custom_items[PlayerController.widget_order.SCRUB] as ScrubMenuitem; scrub.update_position(this.mpris2_player.Position); */ @@ -187,8 +184,7 @@ public class Mpris2Controller : GLib.Object { return (this.mpris2_player != null); } - - + } |