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
diff options
context:
space:
mode:
authorAleksoid <aleksoid@users.sourceforge.net>2008-08-19 11:00:04 +0400
committerAleksoid <aleksoid@users.sourceforge.net>2008-08-19 11:00:04 +0400
commit109e845500190373c372414b8664a6611dfddf06 (patch)
tree0c6dd99896a5db4b70411ca4fa23d8627d6676ce /src/apps/mplayerc/PPageAccelTbl.cpp
parentffd087ebdb5d848d203c50a5451013be870e52ef (diff)
FIX : selection of a language not all data transferred(need restart on MPC-HC).
FIX : Slovak, Chinese (simplified), Korean language not show subMenu "Shader". git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@735 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/apps/mplayerc/PPageAccelTbl.cpp')
-rw-r--r--src/apps/mplayerc/PPageAccelTbl.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/apps/mplayerc/PPageAccelTbl.cpp b/src/apps/mplayerc/PPageAccelTbl.cpp
index 50826220c..7a3431b7b 100644
--- a/src/apps/mplayerc/PPageAccelTbl.cpp
+++ b/src/apps/mplayerc/PPageAccelTbl.cpp
@@ -636,10 +636,12 @@ BOOL CPPageAccelTbl::OnInitDialog()
m_list.InsertColumn(COL_RMCMD, _T("RemoteCmd"), LVCFMT_LEFT, 80);
m_list.InsertColumn(COL_RMREPCNT, _T("RepCnt"), LVCFMT_CENTER, 60);
+
+ s.CreateCmdName();
POSITION pos = m_wmcmds.GetHeadPosition();
for(int i = 0; pos; i++)
{
- int row = m_list.InsertItem(m_list.GetItemCount(), m_wmcmds.GetAt(pos).name, COL_CMD);
+ int row = m_list.InsertItem(m_list.GetItemCount(), /*m_wmcmds.GetAt(pos).name*/s.GetCmdName(i), COL_CMD);
m_list.SetItemData(row, (DWORD_PTR)pos);
m_wmcmds.GetNext(pos);
}