Update bug in wxListCtrl,

Y2000 bug in wxFileDialog (sic).


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5235 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2000-01-04 15:32:14 +00:00
parent 98959adb03
commit d3e90957cf
2 changed files with 20 additions and 5 deletions

View File

@@ -3107,7 +3107,10 @@ long wxListCtrl::InsertItem( long index, const wxString &label, int imageIndex )
long wxListCtrl::InsertColumn( long col, wxListItem &item )
{
wxASSERT( m_headerWin );
m_mainWin->InsertColumn( col, item );
m_headerWin->Refresh();
return 0;
}