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:
@@ -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 );
|
||||
|
||||
|
Reference in New Issue
Block a user