From ec4a768339b5f58a54535c7694c2956371650153 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 30 Oct 2007 00:32:18 +0000 Subject: [PATCH] compilation fix for WXWIN_COMPATIBILITY_2__4==1 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@49529 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/hash.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/hash.cpp b/src/common/hash.cpp index 10120633e7..779f48169d 100644 --- a/src/common/hash.cpp +++ b/src/common/hash.cpp @@ -406,7 +406,7 @@ void wxHashTable::DoCopy(const wxHashTable& table) hash_table[i] = NULL; else { hash_table[i] = new wxList(key_type); - hash_table[i]->Assign(*(table.hash_table[i])); + *hash_table[i] = *(table.hash_table[i]); } } }