X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bbfa03228a5fc1f23565cf59ee29629bc4336d65..dd60b9ec1e436bfa13eb94ffb69f921aef534eb0:/src/common/init.cpp diff --git a/src/common/init.cpp b/src/common/init.cpp index 63cf1f4ece..50b8642fbe 100644 --- a/src/common/init.cpp +++ b/src/common/init.cpp @@ -17,12 +17,17 @@ // headers // ---------------------------------------------------------------------------- -#ifdef __GNUG__ - #pragma implementation "appbase.h" -#endif +#include "wx/wxprec.h" + +#ifdef __BORLANDC__ + #pragma hdrstop +#endif //__BORLANDC__ -#include "wx/app.h" -#include "wx/debug.h" +#ifndef WX_PRECOMP + #include "wx/app.h" + #include "wx/debug.h" + #include "wx/module.h" +#endif // ---------------------------------------------------------------------------- // global vars @@ -33,12 +38,6 @@ wxApp * WXDLLEXPORT wxTheApp = NULL; wxAppInitializerFunction wxAppBase::m_appInitFn = (wxAppInitializerFunction)NULL; -#if wxUSE_THREADS - // List of events pending processing - wxList *wxPendingEvents = NULL; - wxCriticalSection *wxPendingEventsLocker = NULL; -#endif // wxUSE_THREADS - // ---------------------------------------------------------------------------- // private classes // ---------------------------------------------------------------------------- @@ -46,7 +45,7 @@ wxAppInitializerFunction class /* no WXDLLEXPORT */ wxConsoleApp : public wxApp { public: - virtual int OnRun() { wxFAIL_MSG(T("unreachable")); return 0; } + virtual int OnRun() { wxFAIL_MSG(wxT("unreachable")); return 0; } }; // ---------------------------------------------------------------------------- @@ -68,7 +67,7 @@ bool WXDLLEXPORT wxInitialize() } wxASSERT_MSG( !wxTheApp, - T("either call wxInitialize or create app, not both!") ); + wxT("either call wxInitialize or create app, not both!") ); wxClassInfo::InitializeClasses();