summaryrefslogtreecommitdiffstats
path: root/examples/qtconcurrent/map/main.cpp
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2014-09-16 15:22:09 +0200
committerAlex Blasche <alexander.blasche@digia.com>2014-09-18 08:16:00 +0200
commit935e6a2b330789925a37e85b171315044dac2ada (patch)
treeaf099504bca8dcad4c06fd21556354f6c57c292f /examples/qtconcurrent/map/main.cpp
parentf222d520cd34f15d5e3fb8f48a7fb2d04b86d62a (diff)
Make qtconcurrent map example compile on exotic compilers
Task-number: QTBUG-9015 Change-Id: I1019765312c8d55728023642601199506269be6d Reviewed-by: Mitch Curtis <mitch.curtis@digia.com>
Diffstat (limited to 'examples/qtconcurrent/map/main.cpp')
-rw-r--r--examples/qtconcurrent/map/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/qtconcurrent/map/main.cpp b/examples/qtconcurrent/map/main.cpp
index 01595f0c2e..cec07dad66 100644
--- a/examples/qtconcurrent/map/main.cpp
+++ b/examples/qtconcurrent/map/main.cpp
@@ -64,7 +64,7 @@ int main(int argc, char *argv[])
// Use QtConcurrentBlocking::mapped to apply the scale function to all the
// images in the list.
- QList<QImage> thumbnails = QtConcurrent::blockingMapped(images, scale);
+ QList<QImage> thumbnails = QtConcurrent::blockingMapped<QList<QImage> >(images, scale);
return 0;
}