Skip to content

Commit

Permalink
bits start at 0 !
Browse files Browse the repository at this point in the history
  • Loading branch information
jyavenard committed Jul 19, 2013
1 parent 4625c5d commit 5debb21
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mythtv/libs/libmythui/mythnotification.h
Expand Up @@ -89,12 +89,12 @@ class MUI_PUBLIC MythNotification : public MythEvent
enum Visibility {
kNone = 0,
kAll = ~0,
kPlayback = (1 << 1),
kSettings = (1 << 2),
kWizard = (1 << 3),
kVideos = (1 << 4),
kMusic = (1 << 5),
kRecordings = (1 << 6),
kPlayback = (1 << 0),
kSettings = (1 << 1),
kWizard = (1 << 2),
kVideos = (1 << 3),
kMusic = (1 << 4),
kRecordings = (1 << 5),
};

// Setter
Expand Down

0 comments on commit 5debb21

Please sign in to comment.