diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-11-18 11:30:03 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-11-18 11:30:03 +0000 |
commit | 3ea42eb34e8cf787c98bb783d39c6f237381ffe2 (patch) | |
tree | cce01484c579ad3dbab314c54b831f3662cdc9dd /src/metadata-menu-item.vala | |
parent | 0bdad8a144f21ecaceeb1394c2e2a61a994b53c9 (diff) | |
download | ayatana-indicator-sound-3ea42eb34e8cf787c98bb783d39c6f237381ffe2.tar.gz ayatana-indicator-sound-3ea42eb34e8cf787c98bb783d39c6f237381ffe2.tar.bz2 ayatana-indicator-sound-3ea42eb34e8cf787c98bb783d39c6f237381ffe2.zip |
made the necessary changes to ensure compatibility with valac-0.12, and dealt with a compiler warning
Diffstat (limited to 'src/metadata-menu-item.vala')
-rw-r--r-- | src/metadata-menu-item.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/metadata-menu-item.vala b/src/metadata-menu-item.vala index 3f71653..c9ab4dd 100644 --- a/src/metadata-menu-item.vala +++ b/src/metadata-menu-item.vala @@ -133,7 +133,7 @@ public class MetadataMenuitem : PlayerItem { try{ PixbufLoader loader = new PixbufLoader (); - loader.write (update.data, update.len); + loader.write (update.data); loader.close (); Pixbuf icon = loader.get_pixbuf (); string path = this.album_art_cache_dir.concat("/downloaded-coverart-XXXXXX"); |