mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
Do not call DefFrameProc() for not yet created MDI client window.
svn path=/trunk/; revision=26629
This commit is contained in:
parent
d229077222
commit
9269358c6f
1 changed files with 1 additions and 1 deletions
|
@ -732,7 +732,7 @@ MDIMainFrame::MDIMainFrame(HWND hwnd)
|
|||
ccs.hWindowMenu = _hMenuWindow;
|
||||
ccs.idFirstChild = IDW_FIRST_CHILD;
|
||||
|
||||
_hmdiclient = CreateWindowEx(WS_EX_CLIENTEDGE, TEXT("MDICLIENT"), NULL,
|
||||
_hmdiclient = CreateWindowEx(WS_EX_CLIENTEDGE|WS_EX_NOPARENTNOTIFY, TEXT("MDICLIENT"), NULL,
|
||||
WS_CHILD|WS_CLIPCHILDREN|WS_VSCROLL|WS_HSCROLL|WS_VISIBLE|WS_BORDER,
|
||||
0, 0, 0, 0,
|
||||
hwnd, 0, g_Globals._hInstance, &ccs);
|
||||
|
|
Loading…
Reference in a new issue