]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/mdi.cpp
If -1 is used for width/height, use best size.
[wxWidgets.git] / src / motif / mdi.cpp
index 4fa16b4cfe044b1c17efb048d89d95332c9c8022..4ee31d8bbc6adb2f832cf2ccea72c3d75131287e 100644 (file)
@@ -509,7 +509,7 @@ void wxMDIChildFrame::DoGetPosition(int *x, int *y) const
 
 bool wxMDIChildFrame::Show(bool show)
 {
-    m_visibleStatus = show; /* show-&-hide fix */
+    SetVisibleStatus( show );
     return wxWindow::Show(show);
 }
 
@@ -543,7 +543,7 @@ void wxMDIChildFrame::SetIcons(const wxIconBundle& icons)
 
 void wxMDIChildFrame::SetTitle(const wxString& title)
 {
-    m_title = title;
+    wxTopLevelWindow::SetTitle( title );
     wxMDIClientWindow* clientWindow = GetMDIParentFrame()->GetClientWindow();
     int pageNo = clientWindow->FindPagePosition(this);
     if (pageNo > -1)