Browse Source

- Compilation fix for MinGW

adaptive-webui-19844
Christophe Dumez 16 years ago
parent
commit
5d2d1dfa94
  1. 6
      src/filterParserThread.h

6
src/filterParserThread.h

@ -35,7 +35,11 @@ using namespace std; @@ -35,7 +35,11 @@ using namespace std;
// P2B Stuff
#include <string.h>
#include <arpa/inet.h>
#ifdef Q_WS_WIN
#include <Winsock2.h>
#else
#include <arpa/inet.h>
#endif
// End of P2B stuff
class FilterParserThread : public QThread {

Loading…
Cancel
Save