aboutsummaryrefslogtreecommitdiff
path: root/src/title-menu-item.vala
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2011-02-01 14:40:51 -0600
committerConor Curran <conor.curran@canonical.com>2011-02-01 14:40:51 -0600
commit2b6453d1a988eb4a82df18401b3ba9b3867a2f40 (patch)
tree84c9f7a1a05638f81f513c353d50549a55a14a58 /src/title-menu-item.vala
parentebf8fb61bea8de7d6d2df81015b538638207f2cf (diff)
downloadayatana-indicator-sound-2b6453d1a988eb4a82df18401b3ba9b3867a2f40.tar.gz
ayatana-indicator-sound-2b6453d1a988eb4a82df18401b3ba9b3867a2f40.tar.bz2
ayatana-indicator-sound-2b6453d1a988eb4a82df18401b3ba9b3867a2f40.zip
fixes for the last two merge requests
Diffstat (limited to 'src/title-menu-item.vala')
-rw-r--r--src/title-menu-item.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/title-menu-item.vala b/src/title-menu-item.vala
index fd81f65..ac93b89 100644
--- a/src/title-menu-item.vala
+++ b/src/title-menu-item.vala
@@ -48,7 +48,7 @@ public class TitleMenuitem : PlayerItem
public void alter_label (string new_title)
{
- if (new_title != null) return;
+ if (new_title == null) return;
this.property_set(MENUITEM_NAME, new_title);
}