diff options
author | Harald Fernengel <harald.fernengel@nokia.com> | 2009-08-17 18:46:45 (GMT) |
---|---|---|
committer | Harald Fernengel <harald.fernengel@nokia.com> | 2009-08-17 18:47:45 (GMT) |
commit | 725d3a60c62468553c63a0269282ebdb821c650c (patch) | |
tree | 3a6b99b1a4db4aac44178606aedc773762b6c821 /src/corelib/concurrent | |
parent | 843d2eed0ac10589a01d40bfdf88cb44c6a00b17 (diff) | |
download | Qt-725d3a60c62468553c63a0269282ebdb821c650c.zip Qt-725d3a60c62468553c63a0269282ebdb821c650c.tar.gz Qt-725d3a60c62468553c63a0269282ebdb821c650c.tar.bz2 |
fix includes to use lower-case
Makes sure that we can bootstrap QtCore easier on weird platforms
without having to run syncqt first
Diffstat (limited to 'src/corelib/concurrent')
-rw-r--r-- | src/corelib/concurrent/qfuturewatcher.cpp | 6 | ||||
-rw-r--r-- | src/corelib/concurrent/qfuturewatcher_p.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/corelib/concurrent/qfuturewatcher.cpp b/src/corelib/concurrent/qfuturewatcher.cpp index 4e9e723..84715b4 100644 --- a/src/corelib/concurrent/qfuturewatcher.cpp +++ b/src/corelib/concurrent/qfuturewatcher.cpp @@ -43,9 +43,9 @@ #ifndef QT_NO_QFUTURE -#include <QEvent> -#include <QCoreApplication> -#include <QThread> +#include <QtCore/qcoreevent.h> +#include <QtCore/qcoreapplication.h> +#include <QtCore/qthread.h> #include "qfuturewatcher_p.h" diff --git a/src/corelib/concurrent/qfuturewatcher_p.h b/src/corelib/concurrent/qfuturewatcher_p.h index 69a28eb..8fb0e4f 100644 --- a/src/corelib/concurrent/qfuturewatcher_p.h +++ b/src/corelib/concurrent/qfuturewatcher_p.h @@ -54,7 +54,7 @@ // #include "qfutureinterface_p.h" -#include <QList> +#include <qlist.h> #ifndef QT_NO_QFUTURE |