]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/mdi.cpp
compilation fix after wxBitmap image changes
[wxWidgets.git] / src / msw / mdi.cpp
index 1e9255d92d7cb72ecc33e4351d537d2be0aa37ad..8c860d0744d8eb39d0f333756ba041500aedf35a 100644 (file)
@@ -902,6 +902,14 @@ bool wxMDIChildFrame::Show(bool show)
     return true;
 }
 
+void
+wxMDIChildFrame::DoSetSize(int x, int y, int width, int height, int sizeFlags)
+{
+    // we need to disable client area origin adjustments used for the child
+    // windows for the frame itself
+    wxMDIChildFrameBase::DoSetSize(x, y, width, height, sizeFlags);
+}
+
 // Set the client size (i.e. leave the calculation of borders etc.
 // to wxWidgets)
 void wxMDIChildFrame::DoSetClientSize(int width, int height)