July 19, 2026
9:29 a.m.
Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/tests/toolbar.c:
+ AddButton(hToolbar, btn1, 0); + AddButton(hToolbar, btn2, 1); + AddButton(hToolbar, btn3, 2); + SendMessageA(hToolbar, TB_AUTOSIZE, 0, 0); + result = SendMessageA(hToolbar, TB_GETROWS, 0, 0); + todo_wine ok(result == 1, "Got unexpected nRows: %d.\n", result); + + AddButton(hToolbar, btn3, 3); + SendMessageA(hToolbar, TB_AUTOSIZE, 0, 0); + result = SendMessageA(hToolbar, TB_GETROWS, 0, 0); + ok(result == 2, "Got unexpected nRows: %d.\n", result); + + DestroyWindow(hToolbar); +} + + One empty line is enough here.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/10261#note_146048