]> git.saurik.com Git - wxWidgets.git/commitdiff
Initialize m_overflow in wxGridCellAttr::Clone.
authorStefan Neis <Stefan.Neis@t-online.de>
Sun, 8 Oct 2006 22:22:24 +0000 (22:22 +0000)
committerStefan Neis <Stefan.Neis@t-online.de>
Sun, 8 Oct 2006 22:22:24 +0000 (22:22 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41752 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/grid.cpp

index 661470456b0ae3078dc14e6b5c2df473302b4340..ef672217aea3294f1062528898db63cc365f143e 100644 (file)
@@ -2292,6 +2292,7 @@ wxGridCellAttr *wxGridCellAttr::Clone() const
     if ( IsReadOnly() )
         attr->SetReadOnly();
 
+    attr->SetOverflow( m_overflow );
     attr->SetKind( m_attrkind );
 
     return attr;