SetOverflow() should be called with a bool argument, not m_overflow

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41756 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2006-10-08 22:46:15 +00:00
parent 343ae70d4c
commit dfd7c0821a

View File

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