aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/qml-debugging
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-03-31 16:29:06 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2014-03-31 18:08:48 +0200
commite6b42646fd477daf31caf52ead3f9452f340c114 (patch)
treee61714fcbc9b1a08893fc904628f47103ea1bb27 /tests/auto/blackbox/testdata/qml-debugging
parentc6b93561618776bc247483e55db98df590ec0c8d (diff)
Make "Qt.declarative" available as "Qt.quick" again for Qt 4.
This was accidentally removed when switching to the new Qt modules approach. Change-Id: Ie8db5a183c2cc3a82d31c2793710983cf4206ef0 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests/auto/blackbox/testdata/qml-debugging')
-rw-r--r--tests/auto/blackbox/testdata/qml-debugging/main.cpp22
1 files changed, 19 insertions, 3 deletions
diff --git a/tests/auto/blackbox/testdata/qml-debugging/main.cpp b/tests/auto/blackbox/testdata/qml-debugging/main.cpp
index 51f46ef65..e28c5e126 100644
--- a/tests/auto/blackbox/testdata/qml-debugging/main.cpp
+++ b/tests/auto/blackbox/testdata/qml-debugging/main.cpp
@@ -1,12 +1,28 @@
+#include <QtGlobal>
+#include <QString>
+
+#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
#include <QGuiApplication>
#include <QQmlApplicationEngine>
+typedef QGuiApplication Application;
+#define AH_SO_THIS_IS_QT5
+#else
+#include <QApplication>
+#include <QDeclarativeView>
+#define AH_SO_THIS_IS_QT4
+typedef QApplication Application;
+#endif
int main(int argc, char *argv[])
{
- QGuiApplication app(argc, argv);
-
+ Application app(argc, argv);
+#ifdef AH_SO_THIS_IS_QT5
QQmlApplicationEngine engine;
- engine.load(QUrl(QStringLiteral("qrc:///qml/main.qml")));
+ engine.load(QUrl("blubb"));
+#else
+ QDeclarativeView view;
+ view.setSource(QUrl("blubb"));
+#endif
return app.exec();
}