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

This commit is contained in:
Nicolas Le Cam 2008-07-20 22:44:00 +02:00 committed by Alexandre Julliard
parent 6f164d504b
commit 5cf418f521

View file

@ -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;