mirror of
https://github.com/reactos/reactos.git
synced 2025-06-27 06:09:44 +00:00
[REGEDIT] Fix and improvement in TreeView (Null handle check, incorrect display after edit, WM_NOTIFY refactor) (#2733)
* - Fix of missing invalid handle check - Fix of Address & status bar incorrect display after rename - Refactoring of Treeview WM_NOTIFY code, for better consistency with WM_NOTIFY management for ListView * Fix following review (space in #define) * Cleanup following review * fix following review * Fix of round 3 of review comments * UpdateAdress kept in its original location * fix * fix (extern missing) * both extern removed * Review comments Error message being added in order to support CORE-17048
This commit is contained in:
parent
3fd6dbd943
commit
4d1cd72317
4 changed files with 143 additions and 109 deletions
|
@ -563,7 +563,7 @@ BOOL ListWndNotifyProc(HWND hWnd, WPARAM wParam, LPARAM lParam, BOOL *Result)
|
|||
}
|
||||
return TRUE;
|
||||
case NM_SETFOCUS:
|
||||
g_pChildWnd->nFocusPanel = 0;
|
||||
g_pChildWnd->nFocusPanel = 1;
|
||||
break;
|
||||
case LVN_BEGINLABELEDIT:
|
||||
Info = (NMLVDISPINFO*)lParam;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue