summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
b6812a6)
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;
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;
{
wxListItem info;
info.m_mask = wxLIST_MASK_TEXT;
info.m_itemId = item;
GetItem( info );
return info.m_text;
}
GetItem( info );
return info.m_text;
}