X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/92a4e4de68d3bcc812c01b853c1a8d0f6ddadab6..a2cffa18c952f435607fe0397d5258fa61d3da99:/src/generic/listctrl.cpp diff --git a/src/generic/listctrl.cpp b/src/generic/listctrl.cpp index 00af514ac0..83f14c0b82 100644 --- a/src/generic/listctrl.cpp +++ b/src/generic/listctrl.cpp @@ -4320,10 +4320,12 @@ void wxListMainWindow::InsertItem( wxListItem &item ) { wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual control") ); - size_t count = GetItemCount(); - wxCHECK_RET( item.m_itemId >= 0 && (size_t)item.m_itemId <= count, - _T("invalid item index") ); + int count = GetItemCount(); + wxCHECK_RET( item.m_itemId >= 0, _T("invalid item index") ); + if (item.m_itemId > count) + item.m_itemId = count; + size_t id = item.m_itemId; m_dirty = true;