]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/control.cpp
Deprecate wxPathExists, make wxDirExists used everywhere, minor source cleaning.
[wxWidgets.git] / src / os2 / control.cpp
index f390b9c38bcd051dade60380c0e7f6ff62f2ff5a..df264fae88b6165880066ef0dcb168eea57b2d62 100644 (file)
@@ -108,7 +108,7 @@ bool wxControl::OS2CreateControl(
        (void) OS2GetStyle(GetWindowStyle(), &dwExstyle);
     }
     //
-    // All controls should have these styles (wxWindows creates all controls
+    // All controls should have these styles (wxWidgets creates all controls
     // visible by default)
     //
     if (m_isShown )
@@ -284,10 +284,10 @@ void wxFindMaxSize(
     if (nRight > pRect->xRight)
         pRect->xRight = nRight;
 
-    if (nTop < pRect->yTop)
+    if (nTop > pRect->yTop)
         pRect->yTop = nTop;
 
-    if (nBottom > pRect->yBottom)
+    if (nBottom < pRect->yBottom)
         pRect->yBottom = nBottom;
 } // end of wxFindMaxSize