Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorv0lt <v0lt@users.sourceforge.net>2012-04-08 11:47:15 +0400
committerv0lt <v0lt@users.sourceforge.net>2012-04-08 11:47:15 +0400
commitb92ce962f38da5a31817e4e97e628d2d1319fe36 (patch)
tree8dba8eb198c786e239cbf9ca32a48b760904a3ef /src
parentee39994f27c64f539fe66303941b6e8180d80f44 (diff)
cosmetics (fixed noncritical order of operators)
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4288 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src')
-rw-r--r--src/apps/mplayerc/PlayerPlaylistBar.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/apps/mplayerc/PlayerPlaylistBar.cpp b/src/apps/mplayerc/PlayerPlaylistBar.cpp
index 2774ecce8..a059b9215 100644
--- a/src/apps/mplayerc/PlayerPlaylistBar.cpp
+++ b/src/apps/mplayerc/PlayerPlaylistBar.cpp
@@ -1300,10 +1300,10 @@ void CPlayerPlaylistBar::OnContextMenu(CWnd* /*pWnd*/, CPoint p)
m.AppendMenu(MF_STRING|(!m_pl.GetCount()?(MF_DISABLED|MF_GRAYED):MF_ENABLED), M_RANDOMIZE, ResStr(IDS_PLAYLIST_RANDOMIZE));
m.AppendMenu(MF_STRING|(!m_pl.GetCount()?(MF_DISABLED|MF_GRAYED):MF_ENABLED), M_SORTBYID, ResStr(IDS_PLAYLIST_RESTORE));
m.AppendMenu(MF_SEPARATOR);
- m.AppendMenu(MF_STRING|MF_ENABLED|(s.bShufflePlaylistItems)?MF_CHECKED:0, M_SHUFFLE, ResStr(IDS_PLAYLIST_SHUFFLE));
- m.AppendMenu(MF_STRING|MF_ENABLED|(s.bRememberPlaylistItems)?MF_CHECKED:0, M_REMEMBERPLAYLIST, ResStr(IDS_PLAYLIST_REMEBERITEMS));
+ m.AppendMenu(MF_STRING|MF_ENABLED|(s.bShufflePlaylistItems?MF_CHECKED:MF_UNCHECKED), M_SHUFFLE, ResStr(IDS_PLAYLIST_SHUFFLE));
+ m.AppendMenu(MF_STRING|MF_ENABLED|(s.bRememberPlaylistItems?MF_CHECKED:MF_UNCHECKED), M_REMEMBERPLAYLIST, ResStr(IDS_PLAYLIST_REMEBERITEMS));
m.AppendMenu(MF_SEPARATOR);
- m.AppendMenu(MF_STRING|MF_ENABLED|(s.bHidePlaylistFullScreen)?MF_CHECKED:0, M_HIDEFULLSCREEN, ResStr(IDS_PLAYLIST_HIDEFS));
+ m.AppendMenu(MF_STRING|MF_ENABLED|(s.bHidePlaylistFullScreen?MF_CHECKED:MF_UNCHECKED), M_HIDEFULLSCREEN, ResStr(IDS_PLAYLIST_HIDEFS));
CMainFrame* pMainFrm = (CMainFrame*)AfxGetMainWnd();