From d698e226f6ed18cc452bf11482a7af2877314b39 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Sun, 13 Feb 2011 00:54:25 +0100 Subject: [PATCH] comctl32/tests: Remove unused parameter from test_removeimage(). --- dlls/comctl32/tests/tab.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/comctl32/tests/tab.c b/dlls/comctl32/tests/tab.c index 03c43908bce..4c464e651f5 100644 --- a/dlls/comctl32/tests/tab.c +++ b/dlls/comctl32/tests/tab.c @@ -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); -- 2.11.4.GIT