From: Julian Smart <julian@anthemion.co.uk>
Date: Thu, 6 Jun 2002 16:06:17 +0000 (+0000)
Subject: Corrected typo in wxStringHashTable::Delete
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f8305cafb5a59cb2fa7bedc6e8e20e4bada60d90

Corrected typo in wxStringHashTable::Delete


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15759 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/src/common/hash.cpp b/src/common/hash.cpp
index 50d99ed1b2..f8e5ec096b 100644
--- a/src/common/hash.cpp
+++ b/src/common/hash.cpp
@@ -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;
             }