]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
Linux/AXP compilation fixed.
[wxWidgets.git] / src / common / wincmn.cpp
index 9cad968ed4eb27107557a43ecd39cd2f097ce6d2..18e1821bfc1ae89d2c64a2f2a48d245c432d5cda 100644 (file)
@@ -354,9 +354,8 @@ void wxWindowBase::Centre(int direction)
         yNew += posParent.y;
     }
 
-    // move the centre of this window to this position (not the upper left
-    // corner as it was done before)
-    Move(xNew - width / 2, yNew - height / 2);
+    // move the centre of this window to this position
+    Move(xNew, yNew);
 }
 
 // fits the window around the children