From b3c420d16aae3374cca092e22cee1316716a91bb Mon Sep 17 00:00:00 2001 From: William Hua Date: Tue, 17 Feb 2015 15:40:38 -0500 Subject: Use shift operator. --- lib/indicator-menu.vala | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/indicator-menu.vala b/lib/indicator-menu.vala index 77d4512e..ebc92024 100644 --- a/lib/indicator-menu.vala +++ b/lib/indicator-menu.vala @@ -19,12 +19,12 @@ public class Indicator.Keyboard.IndicatorMenu : MenuModel { public enum Options { - NONE = 0x00, - DCONF = 0x01, - XKB = 0x02, - IBUS = 0x04, - FCITX = 0x08, - SETTINGS = 0x10 + NONE = 0, + DCONF = 1 << 0, + XKB = 1 << 1, + IBUS = 1 << 2, + FCITX = 1 << 3, + SETTINGS = 1 << 4 } private Options options; -- cgit v1.2.3