[PATCH 0/1] MR8131: comctl32/tests: Fix childid in trackbar statechange event.
Fixes test failures on Windows introduced by c130a9d4db0909cd7da604f6a2449454842434b0 -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8131
From: Esme Povirk <esme(a)codeweavers.com> Fixes test failures on Windows introduced by c130a9d4db0909cd7da604f6a2449454842434b0 --- dlls/comctl32/tests/trackbar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/comctl32/tests/trackbar.c b/dlls/comctl32/tests/trackbar.c index 71c68b2974c..86fb1ce1898 100644 --- a/dlls/comctl32/tests/trackbar.c +++ b/dlls/comctl32/tests/trackbar.c @@ -176,13 +176,13 @@ static const struct message position_test_seq[] = { { TBM_GETPOS, sent}, { TBM_SETPOS, sent|wparam|lparam, TRUE, 5}, { WM_PAINT, sent|defwinproc}, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, /* v6 only */ + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 3 }, /* v6 only */ { EVENT_OBJECT_VALUECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, { TBM_GETPOS, sent}, { TBM_SETPOS, sent|wparam|lparam, TRUE, 5}, { TBM_SETPOS, sent|wparam|lparam, TRUE, 1000}, { WM_PAINT, sent|defwinproc}, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, /* v6 only */ + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 3 }, /* v6 only */ { EVENT_OBJECT_VALUECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, { TBM_GETPOS, sent}, { TBM_SETPOS, sent|wparam|lparam, FALSE, 20}, -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/8131
This merge request was approved by Nikolay Sivov. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8131
participants (3)
-
Esme Povirk -
Esme Povirk (@madewokherd) -
Nikolay Sivov (@nsivov)