]> git.saurik.com Git - wxWidgets.git/commitdiff
Corrected typo in wxStringHashTable::Delete
authorJulian Smart <julian@anthemion.co.uk>
Thu, 6 Jun 2002 16:06:17 +0000 (16:06 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 6 Jun 2002 16:06:17 +0000 (16:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15759 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/hash.cpp

index 50d99ed1b29b99026cf5bd3eee83baeb169f5d70..f8e5ec096b05c4bc64d14245ad50af7671c30678 100644 (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;
             }