- Don't allow making a window with negative dimensions in WM_WINDOWPOSCHANGING.
authorFilip Navara <filip.navara@gmail.com>
Thu, 13 May 2004 20:25:50 +0000 (20:25 +0000)
committerFilip Navara <filip.navara@gmail.com>
Thu, 13 May 2004 20:25:50 +0000 (20:25 +0000)
svn path=/trunk/; revision=9367

reactos/lib/user32/controls/combo.c
reactos/lib/user32/windows/defwnd.c

index 6f778e4..1bfa9cf 100644 (file)
@@ -491,6 +491,9 @@ static LRESULT COMBO_WindowPosChanging(
     }
   }
 
+  posChanging->cx = max(posChanging->cx, 0);
+  posChanging->cy = max(posChanging->cy, 0);
+
   return 0;
 }
 
index 0a7295a..7cbc0e9 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: defwnd.c,v 1.136 2004/05/12 20:34:38 navaraf Exp $
+/* $Id: defwnd.c,v 1.137 2004/05/13 20:24:26 navaraf Exp $
  *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS user32.dll
@@ -898,6 +898,11 @@ DefWndHandleWindowPosChanging(HWND hWnd, WINDOWPOS* Pos)
             if (Pos->cy < minTrack.y) Pos->cy = minTrack.y;
         }
     }
+    else
+    {
+        Pos->cx = max(Pos->cx, 0);
+        Pos->cy = max(Pos->cy, 0);
+    }
     return 0;
 }