From bb079cacb0a6a06e06eab433580d43f68e9550a2 Mon Sep 17 00:00:00 2001 From: Michael Martin Date: Tue, 25 May 2010 10:33:13 +0000 Subject: [PATCH] [win32k] - Minor revert of 47281 to fix OO installer textboxes. svn path=/trunk/; revision=47348 --- reactos/subsystems/win32/win32k/ntuser/window.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/reactos/subsystems/win32/win32k/ntuser/window.c b/reactos/subsystems/win32/win32k/ntuser/window.c index ca58a3c9369..409770d891a 100644 --- a/reactos/subsystems/win32/win32k/ntuser/window.c +++ b/reactos/subsystems/win32/win32k/ntuser/window.c @@ -2228,9 +2228,6 @@ AllocErr: if (Size.cy < MinTrack.y) Size.cy = MinTrack.y; } - if (Size.cx < 0) Size.cx = 0; - if (Size.cy < 0) Size.cy = 0; - Wnd->rcWindow.left = Pos.x; Wnd->rcWindow.top = Pos.y; Wnd->rcWindow.right = Pos.x + Size.cx;