summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-06-22 15:55:10 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-06-23 15:06:23 +0200
commita8f531216e17c6520858b038b5fba40200347a43 (patch)
tree5b39f3b939b21e42c43e5f5031ea882104d322cb /tests
parentf7f50557023f19780f6d08514270b978ca532975 (diff)
Use QList instead of QVector in uic tests
Task-number: QTBUG-84469 Change-Id: I2d3a8e7eb7094844544e841145fa5d2de8c66adb Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/tools/uic/tst_uic.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/tools/uic/tst_uic.cpp b/tests/auto/tools/uic/tst_uic.cpp
index 4c0a4bbe26..7e4649b7d0 100644
--- a/tests/auto/tools/uic/tst_uic.cpp
+++ b/tests/auto/tools/uic/tst_uic.cpp
@@ -36,7 +36,7 @@
#include <QtCore/QTemporaryDir>
#include <QtCore/QRegularExpression>
#include <QtCore/QStandardPaths>
-#include <QtCore/QVector>
+#include <QtCore/QList>
#include <cstdio>
@@ -67,7 +67,7 @@ class tst_uic : public QObject
Q_OBJECT
public:
- using TestEntries = QVector<TestEntry>;
+ using TestEntries = QList<TestEntry>;
tst_uic();