]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/evtloopcmn.cpp
Disable handling of wxEVT_MOUSEWHEEL in wxVarScrollHelperEvtHandler in wxGTK.
[wxWidgets.git] / src / common / evtloopcmn.cpp
index bcc3472e8fe2c2aba41a6692bdbd2603ba5b4d57..f7b5138cc290acd8e3ab6baf511a31ee33b7c7f4 100644 (file)
@@ -3,7 +3,6 @@
 // Purpose:     common wxEventLoop-related stuff
 // Author:      Vadim Zeitlin
 // Created:     2006-01-12
-// RCS-ID:      $Id$
 // Copyright:   (c) 2006, 2013 Vadim Zeitlin <vadim@wxwindows.org>
 //              (c) 2013 Rob Bresalier
 // Licence:     wxWindows licence
@@ -124,12 +123,16 @@ wxEventLoopBase::AddSourceForFD(int fd,
                                 wxEventLoopSourceHandler *handler,
                                 int flags)
 {
+#if wxUSE_CONSOLE_EVENTLOOP
     // Delegate to the event loop sources manager defined by it.
     wxEventLoopSourcesManagerBase* const
         manager = wxApp::GetValidTraits().GetEventLoopSourcesManager();
     wxCHECK_MSG( manager, NULL, wxS("Must have wxEventLoopSourcesManager") );
 
     return manager->AddSourceForFD(fd, handler, flags);
+#else // !wxUSE_CONSOLE_EVENTLOOP
+    return NULL;
+#endif // wxUSE_CONSOLE_EVENTLOOP/!wxUSE_CONSOLE_EVENTLOOP
 }
 
 #endif // wxUSE_EVENTLOOP_SOURCE