From 603a1809481eb4d4ca972f0f64915d29fb99f53b Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Mon, 29 Jun 2020 12:57:29 +0200 Subject: Use QList instead of QVector Task-number: QTBUG-84469 Change-Id: I666a060351f73783e15e3f96884c9393a5cd7e46 Reviewed-by: Allan Sandfeld Jensen --- tests/manual/quick/touchbrowser/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/manual/quick/touchbrowser/main.cpp') diff --git a/tests/manual/quick/touchbrowser/main.cpp b/tests/manual/quick/touchbrowser/main.cpp index ba0367aaa..5808fe167 100644 --- a/tests/manual/quick/touchbrowser/main.cpp +++ b/tests/manual/quick/touchbrowser/main.cpp @@ -62,7 +62,7 @@ int main(int argc, char **argv) << QByteArrayLiteral("--enable-embedded-switches") << QByteArrayLiteral("--log-level=0"); const int count = args.size() + argc; - QVector qargv(count); + QList qargv(count); qargv[0] = argv[0]; for (int i = 0; i < args.size(); ++i) -- cgit v1.2.1