diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-01-27 10:04:36 -0600 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-01-27 10:04:36 -0600 |
commit | 1529af0e1224f04616054095742b698d8814cec4 (patch) | |
tree | fd3cf04a9daaa057904f40c68a9f6d75c1ece907 /src/transport-menu-item.vala | |
parent | f5aba239f02110c6f0ba2a6c88349c6e59771f65 (diff) | |
parent | f19af83dd99f095ad5ebe317000ac5bf2031a038 (diff) | |
download | ayatana-indicator-sound-1529af0e1224f04616054095742b698d8814cec4.tar.gz ayatana-indicator-sound-1529af0e1224f04616054095742b698d8814cec4.tar.bz2 ayatana-indicator-sound-1529af0e1224f04616054095742b698d8814cec4.zip |
playlist work merged
Diffstat (limited to 'src/transport-menu-item.vala')
-rw-r--r-- | src/transport-menu-item.vala | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/transport-menu-item.vala b/src/transport-menu-item.vala index e93f0bb..b8f55b5 100644 --- a/src/transport-menu-item.vala +++ b/src/transport-menu-item.vala @@ -44,7 +44,8 @@ public class TransportMenuitem : PlayerItem { debug("UPDATING THE TRANSPORT DBUSMENUITEM PLAY STATE WITH VALUE %i", (int)update); - this.property_set_int(MENUITEM_PLAY_STATE, update); + int temp = (int)update; + this.property_set_int(MENUITEM_PLAY_STATE, temp); } public override void handle_event(string name, |