Initialize m_overflow in wxGridCellAttr::Clone.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41752 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis 2006-10-08 22:22:24 +00:00
parent b7cacb43db
commit eb703a121f

View File

@ -2292,6 +2292,7 @@ wxGridCellAttr *wxGridCellAttr::Clone() const
if ( IsReadOnly() )
attr->SetReadOnly();
attr->SetOverflow( m_overflow );
attr->SetKind( m_attrkind );
return attr;