wxWindow::Show() works again

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2456 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1999-05-13 21:33:12 +00:00
parent a23fd0e1d1
commit 85d10d9bbb
2 changed files with 3 additions and 3 deletions

View File

@ -345,7 +345,6 @@ protected:
// additional (MSW specific) flags
bool m_useCtl3D:1; // Using CTL3D for this control
bool m_inOnSize:1; // Protection against OnSize reentry
bool m_backgroundTransparent:1;
bool m_mouseInWindow:1;
bool m_doubleClickAllowed:1;

View File

@ -293,8 +293,6 @@ void wxWindow::Init()
m_caretEnabled =
m_caretShown = FALSE;
m_inOnSize = FALSE;
m_isBeingDeleted = FALSE;
m_oldWndProc = 0;
m_useCtl3D = FALSE;
@ -307,6 +305,9 @@ void wxWindow::Init()
m_yThumbSize = 0;
m_backgroundTransparent = FALSE;
// as all windows are created with WS_VISIBLE style...
m_isShown = TRUE;
#if wxUSE_MOUSEEVENT_HACK
m_lastMouseX =
m_lastMouseY = -1;