From 5d2d1dfa948e51d6d748e7c0b964614725443c7b Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Tue, 30 Dec 2008 08:57:23 +0000 Subject: [PATCH] - Compilation fix for MinGW --- src/filterParserThread.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/filterParserThread.h b/src/filterParserThread.h index bf11da913..e28e83e22 100644 --- a/src/filterParserThread.h +++ b/src/filterParserThread.h @@ -35,7 +35,11 @@ using namespace std; // P2B Stuff #include -#include +#ifdef Q_WS_WIN + #include +#else + #include +#endif // End of P2B stuff class FilterParserThread : public QThread {