some warnings fixed
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6606 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -84,19 +84,24 @@ bool MyApp::OnInit()
|
||||
|
||||
// Create a new client
|
||||
my_client = new MyClient;
|
||||
the_connection = (MyConnection *)my_client->MakeConnection(hostName, server, "IPC TEST");
|
||||
|
||||
while ( !the_connection )
|
||||
// suppress the log messages from MakeConnection()
|
||||
{
|
||||
if ( wxMessageBox("Failed to make connection to server.\nRetry?",
|
||||
"Client Demo Error",
|
||||
wxICON_ERROR | wxYES_NO | wxCANCEL ) != wxYES )
|
||||
{
|
||||
// no server
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
wxLogNull nolog;
|
||||
the_connection = (MyConnection *)my_client->MakeConnection(hostName, server, "IPC TEST");
|
||||
|
||||
while ( !the_connection )
|
||||
{
|
||||
if ( wxMessageBox("Failed to make connection to server.\nRetry?",
|
||||
"Client Demo Error",
|
||||
wxICON_ERROR | wxYES_NO | wxCANCEL ) != wxYES )
|
||||
{
|
||||
// no server
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
the_connection = (MyConnection *)my_client->MakeConnection(hostName, server, "IPC TEST");
|
||||
}
|
||||
}
|
||||
|
||||
if (!the_connection->StartAdvise("Item"))
|
||||
|
Reference in New Issue
Block a user