// Author: Julian Smart
// Modified by: VZ at 25.02.00: type safe hashes with WX_DECLARE_HASH()
// Created: 01/02/97
-// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef WX_PRECOMP
#include "wx/hash.h"
+ #include "wx/object.h"
#endif
wxHashTableBase_Node::wxHashTableBase_Node( long key, void* value,
{
Clear();
- delete[] m_table;
-
- m_table = NULL;
+ wxDELETEA(m_table);
m_size = 0;
}