aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata-qt/qml-debugging/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata-qt/qml-debugging/main.cpp')
-rw-r--r--tests/auto/blackbox/testdata-qt/qml-debugging/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/blackbox/testdata-qt/qml-debugging/main.cpp b/tests/auto/blackbox/testdata-qt/qml-debugging/main.cpp
index 535d6d63f..7311f2d60 100644
--- a/tests/auto/blackbox/testdata-qt/qml-debugging/main.cpp
+++ b/tests/auto/blackbox/testdata-qt/qml-debugging/main.cpp
@@ -32,13 +32,13 @@
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
#include <QGuiApplication>
#include <QQmlApplicationEngine>
-typedef QGuiApplication Application;
+using Application = QGuiApplication;
#define AH_SO_THIS_IS_QT5
#else
#include <QApplication>
#include <QDeclarativeView>
#define AH_SO_THIS_IS_QT4
-typedef QApplication Application;
+using Application = QApplication;
#endif
int main(int argc, char *argv[])