Fix for pure virtual method call caused by wxHashTable not

overriding virtual destructor.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27168 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon
2004-05-08 09:33:29 +00:00
parent 24ec43dbdb
commit 6aa33060cd
2 changed files with 5 additions and 8 deletions

View File

@@ -753,11 +753,6 @@ wxHashTableBase::wxHashTableBase()
{
}
wxHashTableBase::~wxHashTableBase()
{
Destroy();
}
void wxHashTableBase::Create( wxKeyType keyType, size_t size )
{
m_keyType = keyType;
@@ -1038,7 +1033,7 @@ const wxHashTable& wxHashTable::operator=( const wxHashTable& table )
return *this;
}
void wxHashTable::DoCopy( const wxHashTable& table )
void wxHashTable::DoCopy( const wxHashTable& WXUNUSED(table) )
{
Create( m_keyType, m_size );