17 Oct
2022
17 Oct
'22
9:58 a.m.
Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/propsheet.c:
return heap_strdupW(pTitle); }
+static HICON HPSP_get_icon(HPROPSHEETPAGE hpsp) +{ + int cx = GetSystemMetrics(SM_CXSMICON); + int cy = GetSystemMetrics(SM_CYSMICON); + HICON ret; + + if (hpsp->psp.dwFlags & PSP_USEICONID)
Let's move getting cx and cy to this branch. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1072#note_10932