summaryrefslogtreecommitdiff
path: root/qt4/tests
diff options
context:
space:
mode:
authorHib Eris <hib@hiberis.nl>2014-05-29 12:45:33 +0200
committerAlbert Astals Cid <aacid@kde.org>2014-10-31 22:57:30 +0100
commit06dd7dc337c7db6122329e98783a126d59035aff (patch)
tree0e8313ee31043e0f4cf3d5dc8a7e6b86c6bef7f3 /qt4/tests
parent76a350b11160ac203a41b27fbc85a3264bfe4735 (diff)
Include windows.h, not Windows.h
Fixes building on file systems that are case sensitive, e.g. when cross compiling on Linux for win32. https://bugs.freedesktop.org/show_bug.cgi?id=79407
Diffstat (limited to 'qt4/tests')
-rw-r--r--qt4/tests/stress-threads-qt4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt4/tests/stress-threads-qt4.cpp b/qt4/tests/stress-threads-qt4.cpp
index 22f7f1e2..00968de1 100644
--- a/qt4/tests/stress-threads-qt4.cpp
+++ b/qt4/tests/stress-threads-qt4.cpp
@@ -2,7 +2,7 @@
#ifndef _WIN32
#include <unistd.h>
#else
-#include <Windows.h>
+#include <windows.h>
#define sleep Sleep
#endif
#include <time.h>