user32: Call DefWindowProc() in DesktopWndProc().

This fixes a regression introduced by commit
fc14753dc0.

WM_NCCALCSIZE is not handled yet because it initiates loading the
driver again.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45485
Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Józef Kucia 2018-09-17 12:07:27 +02:00 committed by Alexandre Julliard
parent b3717a92d1
commit a8e7348a3d
1 changed files with 3 additions and 1 deletions

View File

@ -127,8 +127,10 @@ LRESULT WINAPI DesktopWndProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lP
}
return TRUE;
}
case WM_NCCALCSIZE:
return 0;
default:
return 0; /* all other messages are ignored */
return DefWindowProcW( hwnd, message, wParam, lParam );
}
}