diff options
author | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-05-19 09:00:31 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-05-19 10:44:16 (GMT) |
commit | ad9d9a93e1f63e2509e9cdb8c245853fb3c8674a (patch) | |
tree | b9ab222525d2515e2c46c43a7b7d101f435e9bd5 | |
parent | 01fd310f47a4a0cf7a72366105cc36e07550494c (diff) | |
download | Qt-ad9d9a93e1f63e2509e9cdb8c245853fb3c8674a.zip Qt-ad9d9a93e1f63e2509e9cdb8c245853fb3c8674a.tar.gz Qt-ad9d9a93e1f63e2509e9cdb8c245853fb3c8674a.tar.bz2 |
Windows CE autotest compile fixes
Not always is "." in the includes path...
Reviewed-by: mauricek
-rw-r--r-- | tests/auto/qfuture/tst_qfuture.cpp | 2 | ||||
-rw-r--r-- | tests/auto/qtessellator/testtessellator.cpp | 2 | ||||
-rw-r--r-- | tests/auto/qtessellator/utils.cpp | 2 | ||||
-rw-r--r-- | tests/auto/qthreadonce/tst_qthreadonce.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/qfuture/tst_qfuture.cpp b/tests/auto/qfuture/tst_qfuture.cpp index 43fd614..383ecba 100644 --- a/tests/auto/qfuture/tst_qfuture.cpp +++ b/tests/auto/qfuture/tst_qfuture.cpp @@ -45,7 +45,7 @@ #include <QtTest/QtTest> #include <qfuture.h> -#include <versioncheck.h> +#include "versioncheck.h" #include <qfuturewatcher.h> #include <qtconcurrentresultstore.h> #include <qtconcurrentexception.h> diff --git a/tests/auto/qtessellator/testtessellator.cpp b/tests/auto/qtessellator/testtessellator.cpp index bd2795c..423c1e8 100644 --- a/tests/auto/qtessellator/testtessellator.cpp +++ b/tests/auto/qtessellator/testtessellator.cpp @@ -38,7 +38,7 @@ ** $QT_END_LICENSE$ ** ****************************************************************************/ -#include <testtessellator.h> +#include "testtessellator.h" #include <private/qtessellator_p.h> #include "math.h" diff --git a/tests/auto/qtessellator/utils.cpp b/tests/auto/qtessellator/utils.cpp index 8a9dc1e..d408193 100644 --- a/tests/auto/qtessellator/utils.cpp +++ b/tests/auto/qtessellator/utils.cpp @@ -43,7 +43,7 @@ #include <assert.h> #include <qglobal.h> -#include <qnum.h> +#include "qnum.h" #define FloatToXFixed(i) (int)((i) * 65536) #define IntToXFixed(i) ((i) << 16) diff --git a/tests/auto/qthreadonce/tst_qthreadonce.cpp b/tests/auto/qthreadonce/tst_qthreadonce.cpp index 7e67dc3..f20788a 100644 --- a/tests/auto/qthreadonce/tst_qthreadonce.cpp +++ b/tests/auto/qthreadonce/tst_qthreadonce.cpp @@ -46,7 +46,7 @@ #include <qmutex.h> #include <qthread.h> #include <qwaitcondition.h> -#include <qthreadonce.h> +#include "qthreadonce.h" //TESTED_CLASS= //TESTED_FILES=corelib/thread/qthreadonce.h corelib/thread/qthreadonce.cpp |