]> git.saurik.com Git - wxWidgets.git/commitdiff
don't compile wxEventLoopManual for the ports which don't need it
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 12 Jan 2006 23:10:03 +0000 (23:10 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 12 Jan 2006 23:10:03 +0000 (23:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36848 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/evtloopcmn.cpp

index 71939e27b224d3db6517a209517d1ca8eb4ab43d..5cdd2549754a4337745cd3b1f8d3a0a51452c658 100644 (file)
@@ -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__
+