From: Vadim Zeitlin Date: Thu, 12 Jan 2006 23:10:03 +0000 (+0000) Subject: don't compile wxEventLoopManual for the ports which don't need it X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/52c9b3490726ee4ad722d7a8fe329e9533ac94fb don't compile wxEventLoopManual for the ports which don't need it git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36848 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/evtloopcmn.cpp b/src/common/evtloopcmn.cpp index 71939e27b2..5cdd254975 100644 --- a/src/common/evtloopcmn.cpp +++ b/src/common/evtloopcmn.cpp @@ -32,6 +32,9 @@ wxEventLoop *wxEventLoopBase::ms_activeLoop = NULL; +// wxEventLoopManual is unused in the other ports +#if defined(__WXMSW__) || defined(__WXMAC__) + // ============================================================================ // wxEventLoopManual implementation // ============================================================================ @@ -145,3 +148,5 @@ void wxEventLoopManual::Exit(int rc) WakeUp(); } +#endif // __WXMSW__ || __WXMAC__ +