int istyle = wxHF_DEFAULT_STYLE;
- wxString service, windowName, book[10], titleFormat, argStr;
+ wxString service, windowName, titleFormat, argStr;
+ wxString book[10];
int bookCount = 0;
int i;
bool hasService = false;
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;