mirror of
https://github.com/reactos/reactos.git
synced 2025-07-30 09:41:47 +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);
|
HWND hTreeView = GetDlgItem(hwnd, IDC_CLASSICSTART_SETTINGS);
|
||||||
|
|
||||||
for (HTREEITEM hItem = TreeView_GetFirstVisible(hTreeView);
|
for (HTREEITEM hItem = TreeView_GetRoot(hTreeView);
|
||||||
hItem != NULL;
|
hItem != NULL;
|
||||||
hItem = TreeView_GetNextVisible(hTreeView, hItem))
|
hItem = TreeView_GetNextVisible(hTreeView, hItem))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue