user32/tests: Destroy the window we created at the end of wait_idle_thread.

oldstable
Gerald Pfeifer 2010-05-01 22:19:08 +02:00 committed by Alexandre Julliard
parent 6976400f7b
commit 7ef088b680
1 changed files with 1 additions and 0 deletions

View File

@ -12275,6 +12275,7 @@ static DWORD CALLBACK wait_idle_thread( void *arg )
hwnd = CreateWindowExA(0, "TestClass", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
while (GetMessage( &msg, 0, 0, 0 )) DispatchMessage( &msg );
DestroyWindow(hwnd);
return 0;
}