diff options
author | Shane Kearns <shane.kearns@accenture.com> | 2011-06-24 14:08:28 (GMT) |
---|---|---|
committer | Shane Kearns <shane.kearns@accenture.com> | 2011-06-24 14:08:28 (GMT) |
commit | 9fc7e0ee3ff00c04f9301cbb45de09851cb55fa4 (patch) | |
tree | 5a4eca884a10df4a2edd640eb3f1464ccc00f77e /tests | |
parent | 11cc0f661911628fb51c92d30c684eb1cea01145 (diff) | |
download | Qt-9fc7e0ee3ff00c04f9301cbb45de09851cb55fa4.zip Qt-9fc7e0ee3ff00c04f9301cbb45de09851cb55fa4.tar.gz Qt-9fc7e0ee3ff00c04f9301cbb45de09851cb55fa4.tar.bz2 |
QSocketNotifier autotest - fix compile with MSVC
Reviewed-By: Sergio Ahumada
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qsocketnotifier/tst_qsocketnotifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qsocketnotifier/tst_qsocketnotifier.cpp b/tests/auto/qsocketnotifier/tst_qsocketnotifier.cpp index eb9a260..46bdb81 100644 --- a/tests/auto/qsocketnotifier/tst_qsocketnotifier.cpp +++ b/tests/auto/qsocketnotifier/tst_qsocketnotifier.cpp @@ -55,9 +55,9 @@ #endif #ifdef Q_OS_UNIX #include <private/qnet_unix_p.h> +#include <sys/select.h> #endif #include <limits> -#include <sys/select.h> class tst_QSocketNotifier : public QObject { |