X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/25b1fc055a49edefeb2441877696cbea9e472c32..6f841509cecded593e8e7c20d4a9e23ed29e5fa1:/src/motif/mdi.cpp diff --git a/src/motif/mdi.cpp b/src/motif/mdi.cpp index 29534aa7a6..bace16b9f9 100644 --- a/src/motif/mdi.cpp +++ b/src/motif/mdi.cpp @@ -133,7 +133,7 @@ void wxMDIParentFrame::OnSize(wxSizeEvent& event) void wxMDIParentFrame::GetClientSize(int *width, int *height) const { - return wxWindow::GetClientSize(width. height); + wxFrame::GetClientSize(width, height); } void wxMDIParentFrame::OnActivate(wxActivateEvent& event) @@ -240,12 +240,12 @@ void wxMDIParentFrame::DoSetSize(int x, int y, int width, int height, int sizeFlags) { - return wxWindow::DoSetSize(x, y, width, height, sizeFlags); + wxWindow::DoSetSize(x, y, width, height, sizeFlags); } void wxMDIParentFrame::DoSetClientSize(int width, int height) { - return wxWindow::DoSetClientSize(width, height); + wxWindow::DoSetClientSize(width, height); } // Responds to colour changes, and passes event on to children. @@ -447,7 +447,7 @@ void wxMDIChildFrame::OnLower() // Set the client size (i.e. leave the calculation of borders etc. // to wxWindows) -void wxMDIChildFrame::SetClientSize(int width, int height) +void wxMDIChildFrame::DoSetClientSize(int width, int height) { wxWindow::DoSetClientSize(width, height); }