Module: wine Branch: master Commit: f4da3fd7ac509f030a4a47e45af3228a674adc73 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f4da3fd7ac509f030a4a47e45a...
Author: Paul Vriens Paul.Vriens.Wine@gmail.com Date: Mon Dec 15 14:19:34 2008 +0100
user32/tests: Destroy the windows after the tests.
---
dlls/user32/tests/win.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/dlls/user32/tests/win.c b/dlls/user32/tests/win.c index ffbb8d2..0d9d426 100644 --- a/dlls/user32/tests/win.c +++ b/dlls/user32/tests/win.c @@ -5431,4 +5431,7 @@ START_TEST(win)
/* add the tests above this line */ UnhookWindowsHookEx(hhook); + + DestroyWindow(hwndMain2); + DestroyWindow(hwndMain); }