RemoveAt() added to array classes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4589 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -261,9 +261,9 @@ void wxBaseArray::Insert(long lItem, size_t nIndex)
|
||||
}
|
||||
|
||||
// removes item from array (by index)
|
||||
void wxBaseArray::Remove(size_t nIndex)
|
||||
void wxBaseArray::RemoveAt(size_t nIndex)
|
||||
{
|
||||
wxCHECK_RET( nIndex <= m_nCount, wxT("bad index in wxArray::Remove") );
|
||||
wxCHECK_RET( nIndex <= m_nCount, wxT("bad index in wxArray::RemoveAt") );
|
||||
|
||||
memmove(&m_pItems[nIndex], &m_pItems[nIndex + 1],
|
||||
(m_nCount - nIndex - 1)*sizeof(long));
|
||||
|
Reference in New Issue
Block a user