comctl32/tests: Remove unused parameter from test_removeimage().

This commit is contained in:
Gerald Pfeifer 2011-02-13 00:54:25 +01:00 committed by Alexandre Julliard
parent 54d98ba791
commit d698e226f6

View file

@ -1148,7 +1148,7 @@ static void test_delete_focus(HWND parent_wnd)
DestroyWindow(hTab);
}
static void test_removeimage(HWND parent_wnd)
static void test_removeimage(void)
{
static const BYTE bits[32];
HWND hwTab;
@ -1408,7 +1408,7 @@ START_TEST(tab)
test_insert_focus(parent_wnd);
test_delete_focus(parent_wnd);
test_delete_selection(parent_wnd);
test_removeimage(parent_wnd);
test_removeimage();
test_TCM_SETITEMEXTRA(parent_wnd);
test_TCS_OWNERDRAWFIXED(parent_wnd);