mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
Do not call DefFrameProc() for not yet created MDI client window.
svn path=/trunk/; revision=26629
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user