comctl32/tests: The PSDK does not define ListView_InsertItemA() so don't use it.

This commit is contained in:
Francois Gouget 2007-05-27 13:31:21 +02:00 committed by Alexandre Julliard
parent ed94ca1e4f
commit c9533adc52
1 changed files with 1 additions and 1 deletions

View File

@ -568,7 +568,7 @@ static void insert_item(HWND hwnd, int idx)
item.iSubItem = 0;
item.pszText = text;
rc = ListView_InsertItemA(hwnd, &item);
rc = ListView_InsertItem(hwnd, &item);
expect(idx, rc);
}