]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/ipc/baseserver.cpp
Document wxHelpControllerBase so the type can be used in Phoenix
[wxWidgets.git] / samples / ipc / baseserver.cpp
index 4d8025fedb1351dd214e8f853ff603c3c1b2acd8..fc5e88c65bb79426ea0703b2845af364cda1dd04 100644 (file)
@@ -7,7 +7,7 @@
 // Created:     2007-11-08
 // RCS-ID:      $Id$
 // Copyright:   (c) 2007 Anders Larsen
-// License:     wxWindows licence
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
@@ -211,8 +211,7 @@ void MyServer::Disconnect()
     if ( m_connection )
     {
         m_connection->Disconnect();
-        delete m_connection;
-        m_connection = NULL;
+        wxDELETE(m_connection);
         wxLogMessage("Disconnected client");
     }
 }
@@ -376,7 +375,9 @@ bool BenchConnection::OnPoke(const wxString& topic,
     if ( m_advise )
     {
         if ( !Advise(item, m_item) )
+        {
             wxLogMessage("Failed to advise client about the change.");
+        }
     }
 
     return true;