summaryrefslogtreecommitdiff
path: root/setup_native/source/win32/customactions/sellang/sorttree.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'setup_native/source/win32/customactions/sellang/sorttree.cxx')
-rw-r--r--setup_native/source/win32/customactions/sellang/sorttree.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/setup_native/source/win32/customactions/sellang/sorttree.cxx b/setup_native/source/win32/customactions/sellang/sorttree.cxx
index 678103689f30..68bbb35401e1 100644
--- a/setup_native/source/win32/customactions/sellang/sorttree.cxx
+++ b/setup_native/source/win32/customactions/sellang/sorttree.cxx
@@ -22,35 +22,35 @@ extern "C" UINT __stdcall SortTree(MSIHANDLE)
{
// Sort items (languages) in SelectionTree control, fdo#46355
- HWND hwndMSI = FindWindow(TEXT("MsiDialogCloseClass"), NULL);
+ HWND hwndMSI = FindWindowW(L"MsiDialogCloseClass", NULL);
if (hwndMSI == NULL)
{
- OutputDebugString("SortTree: MsiDialogCloseClass not found\n");
+ OutputDebugStringA("SortTree: MsiDialogCloseClass not found\n");
return ERROR_SUCCESS;
}
- HWND hwndTV = FindWindowEx(hwndMSI, NULL, TEXT("SysTreeView32"), NULL);
+ HWND hwndTV = FindWindowExW(hwndMSI, NULL, L"SysTreeView32", NULL);
if (hwndTV == NULL)
{
- OutputDebugString("SortTree: SysTreeView32 not found\n");
+ OutputDebugStringA("SortTree: SysTreeView32 not found\n");
return ERROR_SUCCESS;
}
HTREEITEM optional = TreeView_GetRoot(hwndTV);
if (optional == NULL)
{
- OutputDebugString("SortTree: Optional Components branch not found\n");
+ OutputDebugStringA("SortTree: Optional Components branch not found\n");
return ERROR_SUCCESS;
}
HTREEITEM dicts = TreeView_GetChild(hwndTV, optional);
if (dicts == NULL)
{
- OutputDebugString("SortTree: Dictionaries branch not found\n");
+ OutputDebugStringA("SortTree: Dictionaries branch not found\n");
return ERROR_SUCCESS;
}
TreeView_SortChildren(hwndTV, dicts, TRUE);
HTREEITEM langs = TreeView_GetNextSibling(hwndTV, optional);
if (langs == NULL)
{
- OutputDebugString("SortTree: Additional UI Languages branch not found\n");
+ OutputDebugStringA("SortTree: Additional UI Languages branch not found\n");
return ERROR_SUCCESS;
}
TreeView_SortChildren(hwndTV, langs, TRUE);