]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/ipc/baseserver.cpp
Remove wxRTTI macro for wxComboBox from Motif port.
[wxWidgets.git] / samples / ipc / baseserver.cpp
index 6549fdfa424a2728382eb64b3e813415b2340104..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");
     }
 }