From 21a782acebbb15c3e05955817957cd3b52791dcc Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Mon, 10 May 2004 19:23:37 +0000 Subject: [PATCH] take back changes to window styles, they broke our gui consoles svn path=/trunk/; revision=9351 --- reactos/subsys/win32k/ntuser/window.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/subsys/win32k/ntuser/window.c b/reactos/subsys/win32k/ntuser/window.c index ac3cfff8f6c..8f6f3b50dc9 100644 --- a/reactos/subsys/win32k/ntuser/window.c +++ b/reactos/subsys/win32k/ntuser/window.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: window.c,v 1.229 2004/05/10 17:07:18 weiden Exp $ +/* $Id: window.c,v 1.230 2004/05/10 19:23:37 weiden Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -1634,9 +1634,9 @@ NtUserCreateWindowEx(DWORD dwExStyle, if(!(WindowObject->Style & (WS_POPUP | WS_CHILD))) { - /* Automatically assign the overlapped window style. Also always + /* Automatically assign the caption and border style. Also always clip siblings for overlapped windows. */ - WindowObject->Style |= (WS_OVERLAPPEDWINDOW | WS_CLIPSIBLINGS); + WindowObject->Style |= (WS_CAPTION | WS_BORDER | WS_CLIPSIBLINGS); } /* create system menu */