added missing implementation of wxHashTableLong::Create

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2001-02-21 23:52:03 +00:00
parent 1486ed877a
commit b7aaabf86f

View File

@ -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++ )