From 6f6c2450750805075b23251a42fd4c12d15808ce Mon Sep 17 00:00:00 2001 From: Alexey Slepov Date: Mon, 28 May 2012 05:47:19 +0400 Subject: [1/4] user32/tests: remove WM_DESTROY processing in test (it is of no use and causes tests skipping) (try 2) Let it be processed by default window procedure. --- dlls/user32/tests/dialog.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/dlls/user32/tests/dialog.c b/dlls/user32/tests/dialog.c index 6bd34b3..4301c8d 100644 --- a/dlls/user32/tests/dialog.c +++ b/dlls/user32/tests/dialog.c @@ -1027,9 +1027,6 @@ static INT_PTR CALLBACK DestroyOnCloseDlgWinProc (HWND hDlg, UINT uiMsg, case WM_CLOSE: DestroyWindow(hDlg); return TRUE; - case WM_DESTROY: - PostQuitMessage(0); - return TRUE; } return FALSE; } -- 1.7.2.5