hvApp::hvApp()
{
-#if hvUSE_IPC
+#if wxUSE_IPC
m_server = NULL;
#endif
}
bool hasWindowName = false;
bool createServer = false;
-#if hvUSE_IPC
+#if wxUSE_IPC
m_server = NULL;
#endif
wxOPEN | wxFILE_MUST_EXIST,
NULL);
- if (!s.IsEmpty())
+ if (!s.empty())
{
book[0] = s;
bookCount = 1;
}
#endif
-#if hvUSE_IPC
+#if wxUSE_IPC
if ( createServer )
{
wxUnusedVar(createServer);
}
-#endif // hvUSE_IPC
+#endif // wxUSE_IPC
//now add help
wxInitAllImageHandlers();
int hvApp::OnExit()
{
-#if hvUSE_IPC
+#if wxUSE_IPC
wxObjectList::compatibility_iterator node = m_connections.GetFirst();
while (node)
{
return wxNullBitmap;
}
-#if hvUSE_IPC
+#if wxUSE_IPC
wxConnectionBase *hvServer::OnAcceptConnection(const wxString& topic)
{
return true;
}
-#endif // #if hvUSE_IPC
+#endif // #if wxUSE_IPC