]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/hashmap.h
added forward declaration of FrameSite apparently needed by mingw32 4.3
[wxWidgets.git] / include / wx / hashmap.h
index 8618a211e7ffeb1362678c5a50a5ce9190a68070..19ad3fdb49221c9f63f32ed3503a179b209258fe 100644 (file)
@@ -671,8 +671,6 @@ public: \
         Node *node = GetOrCreateNode( \
                 CLASSNAME##_wxImplementation_Pair( v.first, v.second ), \
                 created); \
-        if ( !created ) \
-            node->m_value.second = v.second; \
         return Insert_Result(iterator(node, this), created); \
     } \
  \
@@ -747,5 +745,8 @@ public: \
 WX_DECLARE_HASH_MAP_WITH_DECL( long, long, wxIntegerHash, wxIntegerEqual,
                                wxLongToLongHashMap, class WXDLLIMPEXP_BASE );
 
+WX_DECLARE_STRING_HASH_MAP_WITH_DECL( wxString, wxStringToStringHashMap,
+                                      class WXDLLIMPEXP_BASE );
+
 
 #endif // _WX_HASHMAP_H_