wxListCtrl::InsertItem() ignored the column.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30220 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling 2004-11-01 12:09:18 +00:00
parent b48a2016d0
commit 1e6601c72f

View File

@ -4399,7 +4399,7 @@ void wxListMainWindow::InsertItem( wxListItem &item )
wxListLineData *line = new wxListLineData(this);
line->SetItem( 0, item );
line->SetItem( item.m_col, item );
m_lines.Insert( line, id );