This commit should have been part of r64281.
Also notice that the previous commit message mentioned a wrong ticket number,
see #10572.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64282
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool GetItemPosition( long item, wxPoint& pos ) const;
int GetSelectedItemCount() const;
- wxString GetItemText(long item) const
+ wxString GetItemText(long item, int col = 0) const
{
wxListItem info;
info.m_mask = wxLIST_MASK_TEXT;
info.m_itemId = item;
+ info.m_col = col;
GetItem( info );
return info.m_text;
}