]> git.saurik.com Git - wxWidgets.git/commitdiff
Avoid a crash due to OnSize being called before initialisation
authorJulian Smart <julian@anthemion.co.uk>
Wed, 11 Jul 2007 08:32:57 +0000 (08:32 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Wed, 11 Jul 2007 08:32:57 +0000 (08:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47331 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/grid.cpp

index 945a7914bc43a2076602ac37ce35b51a8fff18cb..47fc186875cd1bfe75bf5a38a5d299d0d11fb308 100644 (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 )