summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/AssocMgr/src/assoclist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/AssocMgr/src/assoclist.cpp b/plugins/AssocMgr/src/assoclist.cpp
index 77c2df020f..cd9e001292 100644
--- a/plugins/AssocMgr/src/assoclist.cpp
+++ b/plugins/AssocMgr/src/assoclist.cpp
@@ -743,12 +743,12 @@ static INT_PTR CALLBACK AssocListOptDlgProc(HWND hwndDlg, UINT msg, WPARAM wPara
lvg.cbSize = sizeof(lvg);
lvg.mask = LVGF_HEADER|LVGF_GROUPID;
lvg.iGroupId = 2;
- lvg.pszHeader = (WCHAR*)TranslateW(L"URLs on Websites");
+ lvg.pszHeader = TranslateT("URLs on Websites");
lvi.iItem = ListView_InsertItem(hwndList, &lvi);
if(lvi.iItem!= -1) {
ListView_InsertGroup(hwndList, lvi.iItem, &lvg);
lvg.iGroupId = 1;
- lvg.pszHeader = (WCHAR*)TranslateW(L"File Types");
+ lvg.pszHeader = TranslateT("File Types");
iItem = lvi.iItem = ListView_InsertItem(hwndList, &lvi);
if(lvi.iItem!= -1)
ListView_InsertGroup(hwndList, lvi.iItem, &lvg);