]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
Patched to enable building on Debian/Alpha
[wxWidgets.git] / src / common / wincmn.cpp
index ca0f43b5f9cda126d9ac0e493a35e63c40ef5382..59f3a09ffbf009254038513d8797706520dcbbee 100644 (file)
@@ -393,8 +393,9 @@ void wxWindowBase::Centre(int direction)
     xNew += posParent.x;
     yNew += posParent.y;
 
-    // move the centre of this window to this position
-    Move(xNew, yNew);
+    // move the window to this position (keeping the old size but using
+    // SetSize() and not Move() to allow xNew and/or yNew to be -1)
+    SetSize(xNew, yNew, width, height, wxSIZE_ALLOW_MINUS_ONE);
 }
 
 // fits the window around the children