Author: jimtabor
Date: Thu Aug 3 04:01:05 2006
New Revision: 23429
URL:
http://svn.reactos.org/svn/reactos?rev=23429&view=rev
Log:
Fixed typo, btw this fixes most of the edit tests.
Modified:
trunk/reactos/subsystems/win32/win32k/ntuser/window.c
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/window.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/nt…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/window.c (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/window.c Thu Aug 3 04:01:05 2006
@@ -1439,7 +1439,7 @@
}
else if (hWndParent)
{
- if ((dwStyle & (WS_CHILD | WS_POPUP)) == WS_CHILD)
+ if ((dwStyle & (WS_CHILD | WS_POPUP)) != WS_CHILD)
{ //temp hack
PWINDOW_OBJECT Par = UserGetWindowObject(hWndParent), Root;
if (Par && (Root = UserGetAncestor(Par, GA_ROOT)))