diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-10 14:25:25 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-10 14:25:25 +0300 |
commit | a17e6fd208ed45a0422f4fe468bd75019be98cbc (patch) | |
tree | 7f504c86b461c6507015df7830e341d472948473 | |
parent | d3bb9e0eb48ce236739adb5be9dd5172f5a35600 (diff) |
fixes #1241 completely
-rw-r--r-- | src/mir_app/src/menu_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/menu_utils.cpp b/src/mir_app/src/menu_utils.cpp index 424e595cc7..c19e5eb90e 100644 --- a/src/mir_app/src/menu_utils.cpp +++ b/src/mir_app/src/menu_utils.cpp @@ -1214,7 +1214,7 @@ static int MO_RegisterIcon(TMO_IntMenuItem *pmi, void*) HICON hIcon = ImageList_GetIcon(pmi->parent->m_hMenuIcons, pmi->iconId, 0);
wchar_t sectionName[256];
- mir_snwprintf(sectionName, LPGENW("Menu icons") L"/%s", TranslateW(pmi->parent->ptszDisplayName));
+ mir_snwprintf(sectionName, LPGENW("Menu icons") L"/%s", pmi->parent->ptszDisplayName);
char iconame[256], uname[100];
bin2hex(&pmi->mi.uid, sizeof(pmi->mi.uid), uname);
|