diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-07-22 19:56:43 +0200 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-07-22 19:56:43 +0200 |
commit | cf97680d74aa9ab00cd55359d9e16acdad9f057f (patch) | |
tree | 5a96a46ad8617c0fc7f24870f4d3840078b7a50d /src/metadata-menu-item.vala | |
parent | 928fbf4bab7659ec523ae16adc052ca42fece589 (diff) | |
download | ayatana-indicator-sound-cf97680d74aa9ab00cd55359d9e16acdad9f057f.tar.gz ayatana-indicator-sound-cf97680d74aa9ab00cd55359d9e16acdad9f057f.tar.bz2 ayatana-indicator-sound-cf97680d74aa9ab00cd55359d9e16acdad9f057f.zip |
trying to set the time line
Diffstat (limited to 'src/metadata-menu-item.vala')
-rw-r--r-- | src/metadata-menu-item.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/metadata-menu-item.vala b/src/metadata-menu-item.vala index 3af9ff1..388ef81 100644 --- a/src/metadata-menu-item.vala +++ b/src/metadata-menu-item.vala @@ -38,10 +38,10 @@ public class MetadataMenuitem : PlayerItem return attrs; } - public bool populated() + public bool not_populated() { - return (this.property_get(MENUITEM_TITLE) != null && - this.property_get(MENUITEM_TITLE) != ""); + return (this.property_get(MENUITEM_TITLE) == null && + this.property_get(MENUITEM_TITLE) == ""); } }
\ No newline at end of file |