Allow Initialize(NULL)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33148 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2005-03-29 12:22:43 +00:00
parent 7aabb2acd3
commit 5755c2b2a5

View File

@@ -716,7 +716,7 @@ void wxSplitterWindow::Initialize(wxWindow *window)
wxASSERT_MSG( (!window || (window && window->GetParent() == this)),
_T("windows in the splitter should have it as parent!") );
if (! window->IsShown())
if (window && !window->IsShown())
window->Show();
m_windowOne = window;