aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-05-28 08:40:56 +0200
committerhjk <hjk@qt.io>2019-05-28 07:19:45 +0000
commit92a52a71812f6a444e3d1b0aaca02cdcf52044e2 (patch)
tree919a31ec3139b79e95f9a9d502d1c62c666f5da4 /tests/auto
parent7c93b26792187633816f93f74b0f0ba7ef5d8eb4 (diff)
Use Qt's QFileInfoList instead of QList<QFileInfo>
Helps to adapt to potential upstream changes in Qt 6 Change-Id: Ie154bd4fd513d46cb0493758be8943fc4581d71c Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/qml/codemodel/ecmascript7/tst_ecmascript7.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qml/codemodel/ecmascript7/tst_ecmascript7.cpp b/tests/auto/qml/codemodel/ecmascript7/tst_ecmascript7.cpp
index fd6a54b59b..886a920ed4 100644
--- a/tests/auto/qml/codemodel/ecmascript7/tst_ecmascript7.cpp
+++ b/tests/auto/qml/codemodel/ecmascript7/tst_ecmascript7.cpp
@@ -124,7 +124,7 @@ private slots:
void test();
private:
- QList<QFileInfo> m_files;
+ QFileInfoList m_files;
QStringList m_basePaths;
};