]> git.saurik.com Git - wxWidgets.git/commitdiff
PCH-less build fix
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 14 Jul 2008 15:12:58 +0000 (15:12 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 14 Jul 2008 15:12:58 +0000 (15:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54617 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/net/ipc.cpp

index 5ca82bd3e41a48378b2331031ff72e5cb7ec86d2..1ac9167f75303b42236e53a2a412fd01d42d1723 100644 (file)
     #pragma hdrstop
 #endif
 
+// this test needs threads as it runs the test server in a secondary thread
+#if wxUSE_THREADS
+
 // for all others, include the necessary headers
 #ifndef WX_PRECOMP
+    #include "wx/app.h"
 #endif
 
-// this test needs threads as it runs the test server in a secondary thread
-#if wxUSE_THREADS
-
 #include "wx/ipc.h"
 #include "wx/thread.h"
 
@@ -105,7 +106,8 @@ public:
 
         m_thread->Wait();
         delete m_thread;
-        m_thread = NULL;
+
+        delete m_conn;
 
         wxSocketBase::Shutdown();
     }