summaryrefslogtreecommitdiffstats
path: root/src/concurrent/qtconcurrentmap.cpp
diff options
context:
space:
mode:
authorJarek Kobus <[email protected]>2020-06-22 10:25:58 +0200
committerJarek Kobus <[email protected]>2020-06-22 10:37:50 +0200
commit4a12757e5d192527137d543815a1324c113cf39b (patch)
tree100da52bb9e76289b11c93a4df889b5eb74dc8c3 /src/concurrent/qtconcurrentmap.cpp
parentc068b80727946328711c1385681b4a32ce5f0544 (diff)
Use QList instead of QVector in QtConcurrent
Task-number: QTBUG-84469 Change-Id: I99e41c1fef5459d7358b20a97a1dbefcd43bb4e5 Reviewed-by: Andrei Golubev <[email protected]> Reviewed-by: Sona Kurazyan <[email protected]>
Diffstat (limited to 'src/concurrent/qtconcurrentmap.cpp')
-rw-r--r--src/concurrent/qtconcurrentmap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/concurrent/qtconcurrentmap.cpp b/src/concurrent/qtconcurrentmap.cpp
index e60e35af328..26a41133038 100644
--- a/src/concurrent/qtconcurrentmap.cpp
+++ b/src/concurrent/qtconcurrentmap.cpp
@@ -148,7 +148,7 @@
The QtConcurrent::map(), QtConcurrent::mapped() and
QtConcurrent::mappedReduced() functions run computations in parallel on
- the items in a sequence such as a QList or a QVector. QtConcurrent::map()
+ the items in a sequence such as a QList. QtConcurrent::map()
modifies a sequence in-place, QtConcurrent::mapped() returns a new
sequence containing the modified content, and QtConcurrent::mappedReduced()
returns a single result.