user32/tests: Use the correct procedure for dialog tests (Valgrind).

Signed-off-by: Sven Baars <sven.wine@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Sven Baars 2018-09-16 22:07:28 +02:00 committed by Alexandre Julliard
parent 7e39544bfa
commit 470f7b20d4
1 changed files with 1 additions and 1 deletions

View File

@ -877,7 +877,7 @@ static void test_builtinproc(void)
static LRESULT WINAPI TestDlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
return DefWindowProcA(hWnd, uMsg, wParam, lParam);
return DefDlgProcA(hWnd, uMsg, wParam, lParam);
}
static BOOL RegisterTestDialog(HINSTANCE hInstance)