added RefreshItem(s) methods
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11022 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -4920,4 +4920,14 @@ void wxListCtrl::SetItemCount(long count)
|
||||
m_mainWin->SetItemCount(count);
|
||||
}
|
||||
|
||||
void wxListCtrl::RefreshItem(long item)
|
||||
{
|
||||
m_mainWin->RefreshLine(item);
|
||||
}
|
||||
|
||||
void wxListCtrl::RefreshItems(long itemFrom, long itemTo)
|
||||
{
|
||||
m_mainWin->RefreshLines(itemFrom, itemTo);
|
||||
}
|
||||
|
||||
#endif // wxUSE_LISTCTRL
|
||||
|
Reference in New Issue
Block a user