]> git.saurik.com Git - wxWidgets.git/commitdiff
Reversed crazy wxKEY_STRING/INTEGER thing
authorJulian Smart <julian@anthemion.co.uk>
Mon, 10 Dec 2001 21:33:30 +0000 (21:33 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Mon, 10 Dec 2001 21:33:30 +0000 (21:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12973 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/hash.cpp

index 2909e481837ec5223adf08894e59b5404082ad23..e8c47429f275791f8498c9eea66b0b48bb02847e 100644 (file)
@@ -395,7 +395,7 @@ void wxHashTable::Put (long key, long value, wxObject * object)
 
   if (!hash_table[position])
   {
-    hash_table[position] = new wxList (wxKEY_STRING);
+    hash_table[position] = new wxList (wxKEY_INTEGER);
     if (m_deleteContents) hash_table[position]->DeleteContents(TRUE);
   }
 
@@ -413,7 +413,7 @@ void wxHashTable::Put (long key, const wxChar *value, wxObject * object)
 
   if (!hash_table[position])
   {
-    hash_table[position] = new wxList (wxKEY_INTEGER);
+    hash_table[position] = new wxList (wxKEY_STRING);
     if (m_deleteContents) hash_table[position]->DeleteContents(TRUE);
   }