diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-07-13 12:18:08 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-07-13 12:18:08 +0100 |
commit | 4325e0092d77cc2d993c7305c49d0517f3defb0e (patch) | |
tree | c3ed0eba5a33b8e55b104f8eb9b25f868c9fe3b1 /src/metadata-menu-item.vala | |
parent | f383ead1168dde3374dabc2040035907d4ab484d (diff) | |
download | ayatana-indicator-sound-4325e0092d77cc2d993c7305c49d0517f3defb0e.tar.gz ayatana-indicator-sound-4325e0092d77cc2d993c7305c49d0517f3defb0e.tar.bz2 ayatana-indicator-sound-4325e0092d77cc2d993c7305c49d0517f3defb0e.zip |
prep work done for scrub bar
Diffstat (limited to 'src/metadata-menu-item.vala')
-rw-r--r-- | src/metadata-menu-item.vala | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/metadata-menu-item.vala b/src/metadata-menu-item.vala index cfcb3bc..3af9ff1 100644 --- a/src/metadata-menu-item.vala +++ b/src/metadata-menu-item.vala @@ -31,17 +31,17 @@ public class MetadataMenuitem : PlayerItem public static HashSet<string> attributes_format() { HashSet<string> attrs = new HashSet<string>(); - attrs.add(MENUITEM_TEXT_TITLE); - attrs.add(MENUITEM_TEXT_ARTIST); - attrs.add(MENUITEM_TEXT_ALBUM); + attrs.add(MENUITEM_TITLE); + attrs.add(MENUITEM_ARTIST); + attrs.add(MENUITEM_ALBUM); attrs.add(MENUITEM_ARTURL); return attrs; } public bool populated() { - return (this.property_get(MENUITEM_TEXT_TITLE) != null && - this.property_get(MENUITEM_TEXT_TITLE) != ""); + return (this.property_get(MENUITEM_TITLE) != null && + this.property_get(MENUITEM_TITLE) != ""); } }
\ No newline at end of file |