Sorry, needed to fix typo in previous commit.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59535 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis 2009-03-14 18:41:18 +00:00
parent d9a40f7b86
commit c6a9c07cda

View File

@ -206,7 +206,7 @@ void wxArrayString::Shrink()
pNew[j] = m_pItems[j];
delete [] m_pItems;
m_pItems = pNew;
m_nSize = m_nCount
m_nSize = m_nCount;
}
}