From: Vadim Zeitlin Date: Wed, 4 May 2011 00:01:58 +0000 (+0000) Subject: Fix compilation of wxFileSystemWatcher unit test in non-PCH build. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6a9455d3f03c6860947da112130351d862e9ddb2 Fix compilation of wxFileSystemWatcher unit test in non-PCH build. Add #include of wx/timer.h needed when not using PCH. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67695 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/fswatcher/fswatchertest.cpp b/tests/fswatcher/fswatchertest.cpp index f28fee917e..6cefa25969 100644 --- a/tests/fswatcher/fswatchertest.cpp +++ b/tests/fswatcher/fswatchertest.cpp @@ -17,6 +17,10 @@ #pragma hdrstop #endif +#ifndef WX_PRECOMP + #include "wx/timer.h" +#endif + #include "wx/evtloop.h" #include "wx/filename.h" #include "wx/filefn.h"