X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e75491071dbefcada61175e3eb89ce4edf335983..a8a32ce2cf162a218683c3708109ab58884717b7:/src/mac/frame.cpp diff --git a/src/mac/frame.cpp b/src/mac/frame.cpp index cd7a3deeff..6e98062322 100644 --- a/src/mac/frame.cpp +++ b/src/mac/frame.cpp @@ -57,6 +57,7 @@ wxFrame::wxFrame() m_frameMenuBar = NULL; m_frameStatusBar = NULL; m_iconized = FALSE; + m_isShown = FALSE; } bool wxFrame::Create(wxWindow *parent, @@ -73,6 +74,7 @@ bool wxFrame::Create(wxWindow *parent, SetName(name); m_windowStyle = style; m_frameMenuBar = NULL; + m_isShown = FALSE; #if wxUSE_TOOLBAR m_frameToolBar = NULL ; @@ -488,9 +490,9 @@ wxPoint wxFrame::GetClientAreaOrigin() const return pt; } -void wxFrame::GetClientSize(int *x, int *y) const +void wxFrame::DoGetClientSize(int *x, int *y) const { - wxWindow::GetClientSize( x , y ) ; + wxWindow::DoGetClientSize( x , y ) ; if ( GetStatusBar() ) {