diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-02-09 10:56:49 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-02-09 10:56:49 +0000 |
commit | 17f01f35c7b474f4286dd55b129fcf72075760dc (patch) | |
tree | f2db8f02e93be83e26fbd54db79935e93bec019d /src/transport-menu-item.vala | |
parent | 800023f7ab5854c19bdaf426ba86d24feea014ec (diff) | |
download | ayatana-indicator-sound-17f01f35c7b474f4286dd55b129fcf72075760dc.tar.gz ayatana-indicator-sound-17f01f35c7b474f4286dd55b129fcf72075760dc.tar.bz2 ayatana-indicator-sound-17f01f35c7b474f4286dd55b129fcf72075760dc.zip |
fixed racey active playlist property and commented some debugs
Diffstat (limited to 'src/transport-menu-item.vala')
-rw-r--r-- | src/transport-menu-item.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transport-menu-item.vala b/src/transport-menu-item.vala index b8f55b5..b0009d9 100644 --- a/src/transport-menu-item.vala +++ b/src/transport-menu-item.vala @@ -42,8 +42,8 @@ public class TransportMenuitem : PlayerItem public void change_play_state(state update) { - debug("UPDATING THE TRANSPORT DBUSMENUITEM PLAY STATE WITH VALUE %i", - (int)update); + //debug("UPDATING THE TRANSPORT DBUSMENUITEM PLAY STATE WITH VALUE %i", + // (int)update); int temp = (int)update; this.property_set_int(MENUITEM_PLAY_STATE, temp); } @@ -60,7 +60,7 @@ public class TransportMenuitem : PlayerItem } int32 input = v.get_int32(); - debug("transport menu item -> handle_event with value %s", input.to_string()); + //debug("transport menu item -> handle_event with value %s", input.to_string()); //debug("transport owner name = %s", this.owner.app_info.get_name()); this.owner.mpris_bridge.transport_update((action)input); } |