From 3f110fd47ba5e6b05b999314d9ba78c86f239030 Mon Sep 17 00:00:00 2001 From: James Tabor Date: Mon, 7 Apr 2014 02:29:03 +0000 Subject: [PATCH] - Fix win tests. WIP see r62613. svn path=/trunk/; revision=62679 --- reactos/win32ss/user/ntuser/window.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/win32ss/user/ntuser/window.c b/reactos/win32ss/user/ntuser/window.c index 7cf2f36f93a..102b4962aee 100644 --- a/reactos/win32ss/user/ntuser/window.c +++ b/reactos/win32ss/user/ntuser/window.c @@ -1760,7 +1760,8 @@ PWND FASTCALL IntCreateWindow(CREATESTRUCTW* Cs, if (!(Cs->dwExStyle & WS_EX_LAYOUTRTL)) { // Need both here for wine win.c test_CreateWindow. - if (Cs->hwndParent && ParentWindow) + //if (Cs->hwndParent && ParentWindow) + if (ParentWindow) // It breaks more tests..... WIP. { if ( (Cs->style & (WS_CHILD|WS_POPUP)) == WS_CHILD && ParentWindow->ExStyle & WS_EX_LAYOUTRTL &&