summaryrefslogtreecommitdiffstats
path: root/src/concurrent/qtconcurrentthreadengine.h
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-06-22 10:25:58 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-06-22 10:37:50 +0200
commit4a12757e5d192527137d543815a1324c113cf39b (patch)
tree100da52bb9e76289b11c93a4df889b5eb74dc8c3 /src/concurrent/qtconcurrentthreadengine.h
parentc068b80727946328711c1385681b4a32ce5f0544 (diff)
Use QList instead of QVector in QtConcurrent
Task-number: QTBUG-84469 Change-Id: I99e41c1fef5459d7358b20a97a1dbefcd43bb4e5 Reviewed-by: Andrei Golubev <andrei.golubev@qt.io> Reviewed-by: Sona Kurazyan <sona.kurazyan@qt.io>
Diffstat (limited to 'src/concurrent/qtconcurrentthreadengine.h')
-rw-r--r--src/concurrent/qtconcurrentthreadengine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/concurrent/qtconcurrentthreadengine.h b/src/concurrent/qtconcurrentthreadengine.h
index 82bff5fb3a..cbd8ad04d7 100644
--- a/src/concurrent/qtconcurrentthreadengine.h
+++ b/src/concurrent/qtconcurrentthreadengine.h
@@ -195,7 +195,7 @@ public:
futureInterfaceTyped()->reportResult(_result, index);
}
- void reportResults(const QVector<T> &_result, int index = -1, int count = -1)
+ void reportResults(const QList<T> &_result, int index = -1, int count = -1)
{
if (futureInterface)
futureInterfaceTyped()->reportResults(_result, index, count);