From 6ecea097c5a57f39a4815537fdbde2c9c4140d54 Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Fri, 27 Dec 2013 10:26:22 +0100 Subject: fdo#72945 sort languages in Windows custom install tree view Change-Id: I9a35ee7839373b82b47c0d5cc5b329918d337073 --- setup_native/source/win32/customactions/sellang/sorttree.cxx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/setup_native/source/win32/customactions/sellang/sorttree.cxx b/setup_native/source/win32/customactions/sellang/sorttree.cxx index 9472a49bd82d..678103689f30 100644 --- a/setup_native/source/win32/customactions/sellang/sorttree.cxx +++ b/setup_native/source/win32/customactions/sellang/sorttree.cxx @@ -34,13 +34,7 @@ extern "C" UINT __stdcall SortTree(MSIHANDLE) OutputDebugString("SortTree: SysTreeView32 not found\n"); return ERROR_SUCCESS; } - HTREEITEM treeRoot = TreeView_GetRoot(hwndTV); - if (treeRoot == NULL) - { - OutputDebugString("SortTree: TreeView_GetRoot failed\n"); - return ERROR_SUCCESS; - } - HTREEITEM optional = TreeView_GetNextSibling(hwndTV, treeRoot); + HTREEITEM optional = TreeView_GetRoot(hwndTV); if (optional == NULL) { OutputDebugString("SortTree: Optional Components branch not found\n"); -- cgit