Commit 5cf418f5 authored by Nicolas Le Cam's avatar Nicolas Le Cam Committed by Alexandre Julliard

comctl32/tests: Fix a test failure in multiple platforms.

parent 6f164d50
......@@ -205,7 +205,7 @@ static void test_WM_LBUTTONDOWN(void)
hEdit = (HWND)SendMessage(hComboEx, CBEM_GETEDITCONTROL, 0, 0);
cbInfo.cbSize = sizeof(COMBOBOXINFO);
result = SendMessage(hCombo, CB_GETCOMBOBOXINFO, 0, (LPARAM)&cbInfo);
result = GetComboBoxInfo(hCombo, &cbInfo);
ok(result, "Failed to get combobox info structure. LastError=%d\n",
GetLastError());
hList = cbInfo.hwndList;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment