From: David Elliott Date: Thu, 25 Mar 2004 20:19:36 +0000 (+0000) Subject: Move m_isShown = false; into base class constructor X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c7e61a5ed29f91f4e0c19c9f37ed25e7e809ada6 Move m_isShown = false; into base class constructor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26340 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/toplvcmn.cpp b/src/common/toplvcmn.cpp index aa0d96d70c..6ff702eff3 100644 --- a/src/common/toplvcmn.cpp +++ b/src/common/toplvcmn.cpp @@ -54,6 +54,8 @@ IMPLEMENT_DYNAMIC_CLASS(wxTopLevelWindow, wxWindow) wxTopLevelWindowBase::wxTopLevelWindowBase() { + // Unlike windows, top level windows are created hidden by default. + m_isShown = false; } wxTopLevelWindowBase::~wxTopLevelWindowBase() diff --git a/src/msw/toplevel.cpp b/src/msw/toplevel.cpp index eaa89292ad..3c80ac8f54 100644 --- a/src/msw/toplevel.cpp +++ b/src/msw/toplevel.cpp @@ -139,9 +139,6 @@ void wxTopLevelWindowMSW::Init() m_iconized = m_maximizeOnShow = FALSE; - // unlike (almost?) all other windows, frames are created hidden - m_isShown = FALSE; - // Data to save/restore when calling ShowFullScreen m_fsStyle = 0; m_fsOldWindowStyle = 0;