X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/be5a51fb592f3fa2ba38ac6cd1e488d6d806058c..ceec2216bd3c65103e51a4ed9927f90fc1291d9c:/utils/helpview/src/helpview.cpp diff --git a/utils/helpview/src/helpview.cpp b/utils/helpview/src/helpview.cpp index 60b0f7e78f..e09236ebe0 100644 --- a/utils/helpview/src/helpview.cpp +++ b/utils/helpview/src/helpview.cpp @@ -229,10 +229,10 @@ bool hvApp::OnInit() int hvApp::OnExit() { #if hvUSE_IPC - wxNode* node = m_connections.GetFirst(); + wxObjectList::compatibility_iterator node = m_connections.GetFirst(); while (node) { - wxNode* next = node->GetNext(); + wxObjectList::compatibility_iterator next = node->GetNext(); hvConnection* connection = (hvConnection*) node->GetData(); connection->Disconnect(); delete connection;