Small change for updated wxTCPXXX classes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5268 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guillermo Rodriguez Garcia
2000-01-06 01:21:26 +00:00
parent 0834112f89
commit b178e0c71a
2 changed files with 19 additions and 7 deletions

View File

@@ -81,7 +81,6 @@ bool MyApp::OnInit()
// Create a new server
my_server = new MyServer;
my_server->Create(server_name);
frame->Show(TRUE);
return TRUE;
@@ -164,8 +163,11 @@ MyConnection::MyConnection(char *buf, int size):wxConnection(buf, size)
MyConnection::~MyConnection(void)
{
dialog->Destroy();
the_connection = NULL;
if (the_connection)
{
dialog->Destroy();
the_connection = NULL;
}
}
bool MyConnection::OnExecute(const wxString& topic, char *data, int size, wxIPCFormat format)
@@ -191,6 +193,6 @@ char *MyConnection::OnRequest(const wxString& topic, const wxString& item, int *
bool MyConnection::OnStartAdvise(const wxString& topic, const wxString& item)
{
return TRUE;
return TRUE;
}