From 2e89468648315cfc9e6101b8b377eb2a96e1c452 Mon Sep 17 00:00:00 2001 From: Royce Mitchell III Date: Tue, 22 Jun 2004 12:43:49 +0000 Subject: [PATCH] small bugfix - debug/release inconsistency - found by Thomas Weidenmueller svn path=/trunk/; revision=9811 --- reactos/subsys/win32k/ntuser/window.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/subsys/win32k/ntuser/window.c b/reactos/subsys/win32k/ntuser/window.c index 73857010f62..dd68202915c 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.240 2004/06/20 16:06:05 navaraf Exp $ +/* $Id: window.c,v 1.241 2004/06/22 12:43:49 royce Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -1934,7 +1934,9 @@ IntCreateWindowEx(DWORD dwExStyle, if ((WindowObject->ClientRect.right - WindowObject->ClientRect.left) < 0 || (WindowObject->ClientRect.bottom - WindowObject->ClientRect.top) < 0) + { DPRINT("Sending bogus WM_SIZE\n"); + } lParam = MAKE_LONG(WindowObject->ClientRect.right - WindowObject->ClientRect.left, -- 2.17.1