Gerald Pfeifer : comctl32/tests: Remove variable hwndheader which is not really used from test_items.
Module: wine Branch: master Commit: a2edb3c55c89d7583ef5ae658f0263cd6b68d6f0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a2edb3c55c89d7583ef5ae658f... Author: Gerald Pfeifer <gerald(a)pfeifer.com> Date: Mon May 3 01:48:00 2010 +0200 comctl32/tests: Remove variable hwndheader which is not really used from test_items. --- dlls/comctl32/tests/listview.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/comctl32/tests/listview.c b/dlls/comctl32/tests/listview.c index 176f323..a5dae75 100644 --- a/dlls/comctl32/tests/listview.c +++ b/dlls/comctl32/tests/listview.c @@ -1194,7 +1194,7 @@ static void test_items(void) static void test_columns(void) { - HWND hwnd, hwndheader; + HWND hwnd; LVCOLUMNA column; LVITEMA item; INT order[2]; @@ -1220,7 +1220,7 @@ static void test_columns(void) /* LVM_GETCOLUMNORDERARRAY */ hwnd = create_listview_control(LVS_REPORT); - hwndheader = subclass_header(hwnd); + subclass_header(hwnd); memset(&column, 0, sizeof(column)); column.mask = LVCF_WIDTH;
participants (1)
-
Alexandre Julliard