From eb703a121f20eaa20f70463e77f2ac2e7354011b Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Sun, 8 Oct 2006 22:22:24 +0000 Subject: [PATCH] Initialize m_overflow in wxGridCellAttr::Clone. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41752 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/grid.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp index 661470456b..ef672217ae 100644 --- a/src/generic/grid.cpp +++ b/src/generic/grid.cpp @@ -2292,6 +2292,7 @@ wxGridCellAttr *wxGridCellAttr::Clone() const if ( IsReadOnly() ) attr->SetReadOnly(); + attr->SetOverflow( m_overflow ); attr->SetKind( m_attrkind ); return attr;