comctl32/tests: Remove variables cx and cy which are not really used from test_approximate_viewrect.

This commit is contained in:
Gerald Pfeifer 2010-05-01 01:11:36 +02:00 committed by Alexandre Julliard
parent 448a8bb594
commit b021128c4b

View file

@ -4120,15 +4120,11 @@ static void test_approximate_viewrect(void)
{
HWND hwnd;
DWORD ret;
INT cx, cy;
HIMAGELIST himl;
HBITMAP hbmp;
LVITEMA itema;
static CHAR test[] = "abracadabra, a very long item label";
cx = GetSystemMetrics(SM_CXICONSPACING) - GetSystemMetrics(SM_CXICON);
cy = GetSystemMetrics(SM_CYICONSPACING) - GetSystemMetrics(SM_CYICON);
hwnd = create_listview_control(LVS_ICON);
himl = ImageList_Create(40, 40, 0, 4, 4);
ok(himl != NULL, "failed to create imagelist\n");