From: Václav Slavík Date: Wed, 16 May 2007 08:45:01 +0000 (+0000) Subject: PCH-less compilation fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b5ef33b2aed3f6aea3b7b71189a93985bfda3b3a PCH-less compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46062 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/selectdispatcher.cpp b/src/common/selectdispatcher.cpp index 4cbb7225bb..adfc2eba62 100644 --- a/src/common/selectdispatcher.cpp +++ b/src/common/selectdispatcher.cpp @@ -23,10 +23,11 @@ #include "wx/module.h" #include "wx/timer.h" #include "wx/unix/private.h" -#include "wx/log.h" #ifndef WX_PRECOMP #include "wx/hash.h" + #include "wx/log.h" + #include "wx/intl.h" #endif #ifdef HAVE_SYS_SELECT_H @@ -251,7 +252,7 @@ void wxSelectDispatcher::RunLoop(int timeout) // continue if we were interrupted by a signal, else bail out if ( errno != EINTR ) { - wxLogSysError(_("Failed to monitor IO channels")); + wxLogSysError(_("Failed to monitor I/O channels")); return; } break; diff --git a/src/unix/epolldispatcher.cpp b/src/unix/epolldispatcher.cpp index 011e8ae49e..294f89f1cb 100644 --- a/src/unix/epolldispatcher.cpp +++ b/src/unix/epolldispatcher.cpp @@ -23,9 +23,13 @@ #include "wx/unix/private/epolldispatcher.h" #include "wx/unix/private.h" -#include "wx/log.h" #include "wx/module.h" +#ifndef WX_PRECOMP + #include "wx/log.h" + #include "wx/intl.h" +#endif + #include #include