Corrected typo in wxStringHashTable::Delete

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15759 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-06-06 16:06:17 +00:00
parent 24b3cc2c96
commit f8305cafb5

View File

@@ -324,7 +324,7 @@ bool wxStringHashTable::Delete(long key) const
{
if ( keys->Item(n) == key )
{
keys.RemoveAt(n);
keys->RemoveAt(n);
m_values[slot]->RemoveAt(n);
return TRUE;
}