Author: tkreuzer
Date: Fri Aug 27 10:20:25 2010
New Revision: 48629
URL:
http://svn.reactos.org/svn/reactos?rev=48629&view=rev
Log:
[USER32]
- Revert r47238 as requested by Giannis: "this commit breaks any program that wants
to subclass mdi client windows"
Modified:
trunk/reactos/dll/win32/user32/windows/window.c
Modified: trunk/reactos/dll/win32/user32/windows/window.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/user32/windows/w…
==============================================================================
--- trunk/reactos/dll/win32/user32/windows/window.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/user32/windows/window.c [iso-8859-1] Fri Aug 27 10:20:25 2010
@@ -342,18 +342,6 @@
POINT mPos[2];
UINT id = 0;
HWND top_child;
- PWND WndParent;
- PCLS pcls;
-
- if(!(WndParent = ValidateHwnd(hWndParent)) ||
- !(pcls = DesktopPtrToUser(WndParent->pcls)))
- return 0;
-
- if (pcls->fnid != FNID_MDICLIENT)
- {
- ERR("WS_EX_MDICHILD, but parent %p is not MDIClient\n",
hWndParent);
- return 0;
- }
/* lpParams of WM_[NC]CREATE is different for MDI children.
* MDICREATESTRUCT members have the originally passed values.
@@ -466,24 +454,6 @@
POINT mPos[2];
UINT id = 0;
HWND top_child;
- PWND WndParent;
- PCLS pcls;
-
- WndParent = ValidateHwnd(hWndParent);
-
- if(!WndParent)
- return 0;
-
- pcls = DesktopPtrToUser(WndParent->pcls);
-
- if(!pcls)
- return 0;
-
- if (pcls->fnid != FNID_MDICLIENT)
- {
- ERR("WS_EX_MDICHILD, but parent %p is not MDIClient\n",
hWndParent);
- return 0;
- }
/* lpParams of WM_[NC]CREATE is different for MDI children.
* MDICREATESTRUCT members have the originally passed values.