]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/grid.cpp
fixed SetForegroundColour() for the generic tree ctrl
[wxWidgets.git] / src / generic / grid.cpp
index 22bd89555c51ab96bc513834eaefa68cf1f0a6eb..fc1b7ced2a60aa26344aa7c9e52fbbf46f09b973 100644 (file)
@@ -3629,9 +3629,10 @@ void wxGrid::Create()
 
     m_cellEditCtrlEnabled = FALSE;
 
-    m_defaultCellAttr = new wxGridCellAttr(m_defaultCellAttr);
+    m_defaultCellAttr = new wxGridCellAttr();
 
     // Set default cell attributes
+    m_defaultCellAttr->SetDefAttr(m_defaultCellAttr);
     m_defaultCellAttr->SetKind(wxGridCellAttr::Default);
     m_defaultCellAttr->SetFont(GetFont());
     m_defaultCellAttr->SetAlignment(wxALIGN_LEFT, wxALIGN_TOP);