Avoid a crash due to OnSize being called before initialisation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47331 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2007-07-11 08:32:57 +00:00
parent 60869e7219
commit b93aafaba9

View File

@ -4221,6 +4221,7 @@ bool wxGrid::Create(wxWindow *parent, wxWindowID id,
Create();
SetInitialSize(size);
CalcDimensions();
return true;
}
@ -6953,8 +6954,11 @@ void wxGrid::Refresh(bool eraseb, const wxRect* rect)
void wxGrid::OnSize(wxSizeEvent& WXUNUSED(event))
{
// update our children window positions and scrollbars
CalcDimensions();
if (m_targetWindow != this) // check whether initialisation has been done
{
// update our children window positions and scrollbars
CalcDimensions();
}
}
void wxGrid::OnKeyDown( wxKeyEvent& event )