comctl32/tests: Remove variable hwndheader which is not really used from test_items.

This commit is contained in:
Gerald Pfeifer 2010-05-03 01:48:00 +02:00 committed by Alexandre Julliard
parent f29514fbec
commit a2edb3c55c
1 changed files with 2 additions and 2 deletions

View File

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