10 Jul
2025
10 Jul
'25
11:12 a.m.
Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/treeview.c:
- return ret; -} - static BOOL TREEVIEW_SendSimpleNotify(const TREEVIEW_INFO *infoPtr, UINT code) { NMHDR hdr; - return TREEVIEW_SendRealNotify(infoPtr, code, &hdr); + HWND hwnd; + BOOL result; + + hwnd = infoPtr->hwnd; + result = TREEVIEW_SendRealNotify(infoPtr, code, &hdr); + + if (!IsWindow(hwnd)) + return TRUE; This is not what I suggested. You are still mixing the message results.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8258#note_109460