From: Václav Slavík Date: Wed, 21 Feb 2001 23:52:03 +0000 (+0000) Subject: added missing implementation of wxHashTableLong::Create X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b7aaabf86f350185bf99dee49c1d4573a5236eaa added missing implementation of wxHashTableLong::Create git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/hash.cpp b/src/common/hash.cpp index 09e9b42d13..d8079dce9e 100644 --- a/src/common/hash.cpp +++ b/src/common/hash.cpp @@ -143,6 +143,11 @@ void wxHashTableLong::Init(size_t size) m_count = 0; } +void wxHashTableLong::Create(size_t size) +{ + Init(size); +} + void wxHashTableLong::Destroy() { for ( size_t n = 0; n < m_hashSize; n++ )