{
if(m_MapList)
{
- wxNode *node = m_MapList->GetFirst();
+ wxList::compatibility_iterator node = m_MapList->GetFirst();
while (node)
{
delete (wxExtHelpMapEntry *)node->GetData();
- delete node;
+ m_MapList->Erase(node);
node = m_MapList->GetFirst();
}
delete m_MapList;
return FALSE;
wxString contents;
- wxNode *node = m_MapList->GetFirst();
+ wxList::compatibility_iterator node = m_MapList->GetFirst();
wxExtHelpMapEntry *entry;
while(node)
{
return FALSE;
wxBusyCursor b; // display a busy cursor
- wxNode *node = m_MapList->GetFirst();
+ wxList::compatibility_iterator node = m_MapList->GetFirst();
wxExtHelpMapEntry *entry;
while(node)
{
int idx = 0, j;
bool rc;
bool showAll = k.IsEmpty();
- wxNode *node = m_MapList->GetFirst();
+ wxList::compatibility_iterator node = m_MapList->GetFirst();
wxExtHelpMapEntry *entry;
{