PCH-less build fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54617 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-07-14 15:12:58 +00:00
parent 4563378999
commit 4c141c5a96

View File

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