mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[EXPLORER] Start Menu Customize: Use TreeView_GetRoot (#6603)
Follow-up to #6596. Enable the Favorite menu setting. JIRA issue: CORE-16956 - Use TreeView_GetRoot instead of TreeView_GetFirstVisible in CustomizeClassic_OnOK function.
This commit is contained in:
parent
bbce6c3fdf
commit
7f8c502901
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ static BOOL CustomizeClassic_OnOK(HWND hwnd)
|
|||
{
|
||||
HWND hTreeView = GetDlgItem(hwnd, IDC_CLASSICSTART_SETTINGS);
|
||||
|
||||
for (HTREEITEM hItem = TreeView_GetFirstVisible(hTreeView);
|
||||
for (HTREEITEM hItem = TreeView_GetRoot(hTreeView);
|
||||
hItem != NULL;
|
||||
hItem = TreeView_GetNextVisible(hTreeView, hItem))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue