From 5fc199263e4d94ac843c45ca60622ab40cf286c1 Mon Sep 17 00:00:00 2001 From: Nicolas Le Cam Date: Tue, 17 Mar 2009 22:40:45 +0100 Subject: [PATCH] shell32/tests: Fix a test on Win2k platform and above. --- dlls/shell32/tests/appbar.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/shell32/tests/appbar.c b/dlls/shell32/tests/appbar.c index 5d15fcd2b67..51bea2b2fdd 100644 --- a/dlls/shell32/tests/appbar.c +++ b/dlls/shell32/tests/appbar.c @@ -340,14 +340,12 @@ static void test_setpos(void) test_window_rects(1, 2); /* remove the other windows */ - SetWindowLongPtr(windows[1].hwnd, GWLP_USERDATA, 0); abd.hWnd = windows[1].hwnd; ret = SHAppBarMessage(ABM_REMOVE, &abd); ok(ret == TRUE, "SHAppBarMessage returned %i\n", ret); windows[1].registered = FALSE; DestroyWindow(windows[1].hwnd); - SetWindowLongPtr(windows[2].hwnd, GWLP_USERDATA, 0); abd.hWnd = windows[2].hwnd; ret = SHAppBarMessage(ABM_REMOVE, &abd); ok(ret == TRUE, "SHAppBarMessage returned %i\n", ret);