diff options
author | Lincoln Ramsay <lincoln.ramsay@nokia.com> | 2011-11-24 16:26:02 +1000 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2011-11-25 05:29:29 +0100 |
commit | f3a86a85b9a4f6d0f22364dcb66e2a8b9f21a9be (patch) | |
tree | 0430b22b888b0a9560c03825d22e9460c154cfcc /tests | |
parent | 7ea382b5eadb0476d17626ddeb62490d9f4fcaf6 (diff) | |
download | qtsensors-f3a86a85b9a4f6d0f22364dcb66e2a8b9f21a9be.tar.gz |
Don't use <QtDeclarative> so we can compile with -Werror
Change-Id: I039727b8920395af8b1129427f409d630d79c52d
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Lorn Potter <lorn.potter@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/legacy_sensors/tst_legacy_sensors.cpp | 3 | ||||
-rw-r--r-- | tests/auto/qtsensors5/tst_qtsensors5.cpp | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/auto/legacy_sensors/tst_legacy_sensors.cpp b/tests/auto/legacy_sensors/tst_legacy_sensors.cpp index 920400e..1a4fcc6 100644 --- a/tests/auto/legacy_sensors/tst_legacy_sensors.cpp +++ b/tests/auto/legacy_sensors/tst_legacy_sensors.cpp @@ -40,7 +40,8 @@ ****************************************************************************/ #include <QtTest/QtTest> -#include <QtDeclarative/QtDeclarative> +#include <QDeclarativeEngine> +#include <QDeclarativeComponent> class tst_legacy_sensors : public QObject { diff --git a/tests/auto/qtsensors5/tst_qtsensors5.cpp b/tests/auto/qtsensors5/tst_qtsensors5.cpp index 90c074c..763ed34 100644 --- a/tests/auto/qtsensors5/tst_qtsensors5.cpp +++ b/tests/auto/qtsensors5/tst_qtsensors5.cpp @@ -40,7 +40,8 @@ ****************************************************************************/ #include <QtTest/QtTest> -#include <QtDeclarative/QtDeclarative> +#include <QDeclarativeEngine> +#include <QDeclarativeComponent> class tst_qtsensors5 : public QObject { |