Applied patch [ 817317 ] fixes for errors and warnings reported by MinGW for utils
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24743 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -153,9 +153,7 @@ bool hvApp::OnInit()
|
||||
wxGetCwd(),
|
||||
wxEmptyString,
|
||||
wxEmptyString,
|
||||
wxT(
|
||||
"Help books (*.htb)|*.htb|Help books (*.zip)|*.zip|\
|
||||
HTML Help Project (*.hhp)|*.hhp"),
|
||||
wxT("Help books (*.htb)|*.htb|Help books (*.zip)|*.zip|HTML Help Project (*.hhp)|*.hhp"),
|
||||
wxOPEN | wxFILE_MUST_EXIST,
|
||||
NULL);
|
||||
|
||||
@@ -226,11 +224,11 @@ bool hvApp::OnInit()
|
||||
int hvApp::OnExit()
|
||||
{
|
||||
#if hvUSE_IPC
|
||||
wxNode* node = m_connections.First();
|
||||
wxNode* node = m_connections.GetFirst();
|
||||
while (node)
|
||||
{
|
||||
wxNode* next = node->Next();
|
||||
hvConnection* connection = (hvConnection*) node->Data();
|
||||
wxNode* next = node->GetNext();
|
||||
hvConnection* connection = (hvConnection*) node->GetData();
|
||||
connection->Disconnect();
|
||||
delete connection;
|
||||
node = next;
|
||||
|
Reference in New Issue
Block a user