PCH-less compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46062 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2007-05-16 08:45:01 +00:00
parent 98d2df7443
commit b5ef33b2ae
2 changed files with 8 additions and 3 deletions

View File

@@ -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;

View File

@@ -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 <sys/epoll.h>
#include <errno.h>