diff options
author | charles kerr <charlesk@canonical.com> | 2015-12-29 11:05:16 -0600 |
---|---|---|
committer | charles kerr <charlesk@canonical.com> | 2015-12-29 11:05:16 -0600 |
commit | 9c02dfba50242cd2eaf259c3efebc55290cdedcf (patch) | |
tree | a9766c7a04b0ed7b249f0c2d31fff4364d51e472 /src/media-player-user.vala | |
parent | 707fd6c5e2d5bdfa6ff1b87f770c1d0b8e8d0894 (diff) | |
download | ayatana-indicator-sound-9c02dfba50242cd2eaf259c3efebc55290cdedcf.tar.gz ayatana-indicator-sound-9c02dfba50242cd2eaf259c3efebc55290cdedcf.tar.bz2 ayatana-indicator-sound-9c02dfba50242cd2eaf259c3efebc55290cdedcf.zip |
prefer Source.REMOVE instead of false in timeout funcs
Diffstat (limited to 'src/media-player-user.vala')
-rw-r--r-- | src/media-player-user.vala | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/media-player-user.vala b/src/media-player-user.vala index 11678d5..1be1a18 100644 --- a/src/media-player-user.vala +++ b/src/media-player-user.vala @@ -75,8 +75,7 @@ public class MediaPlayerUser : MediaPlayer { properties_queued.remove_all(); - /* Remove source */ - return false; + return Source.REMOVE; } /* Turns the DBus names into the object properties */ |