Francois Gouget : comctl32/tests: The PSDK does not define ListView_InsertItemA() so don't use it.
Module: wine Branch: master Commit: c9533adc522233069882b68af18503afa8ae2828 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c9533adc522233069882b68af1... Author: Francois Gouget <fgouget(a)free.fr> Date: Sun May 27 13:31:21 2007 +0200 comctl32/tests: The PSDK does not define ListView_InsertItemA() so don't use it. --- dlls/comctl32/tests/listview.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/comctl32/tests/listview.c b/dlls/comctl32/tests/listview.c index 97c34a6..a64d4d3 100644 --- a/dlls/comctl32/tests/listview.c +++ b/dlls/comctl32/tests/listview.c @@ -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); }
participants (1)
-
Alexandre Julliard