wxUSE_STL fixes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28417 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user