]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/hash.cpp
Smooth Aqua buttons in wxTreeCtrl.
[wxWidgets.git] / 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);
   }