diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-04-14 06:12:40 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-04-14 06:12:40 (GMT) |
commit | e2b31c909912c24bd87a4454dca8ae766e9aca52 (patch) | |
tree | d99638e6170ffde056e3263ef2e5231ce5f806ce /examples | |
parent | 4af9cc043370846c52ec21cf874696ee650394c1 (diff) | |
parent | 756c8e10b96f4b4f7b2e3d2d2c248ec261a3d407 (diff) | |
download | Qt-e2b31c909912c24bd87a4454dca8ae766e9aca52.zip Qt-e2b31c909912c24bd87a4454dca8ae766e9aca52.tar.gz Qt-e2b31c909912c24bd87a4454dca8ae766e9aca52.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1:
Partially revert "Sunstudio12.1(5.10): Fix compile errors GTK style and other minor compile errors"
Fix margins for placeholdertext in QLineEdit
qdoc: Added TOC to module pages.
Doc: Updating design files.
Doc: Fixing design bugs. Updating the index page and script/style files. Adding some image files.
qdoc: Changed <ul> elements in TOC.
Fix QTextDocument::undo() cursor positioning
Diffstat (limited to 'examples')
-rw-r--r-- | examples/qtconcurrent/map/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/qtconcurrent/map/main.cpp b/examples/qtconcurrent/map/main.cpp index 6afefca..6068d30 100644 --- a/examples/qtconcurrent/map/main.cpp +++ b/examples/qtconcurrent/map/main.cpp @@ -67,7 +67,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<QList<QImage> >(images, scale); + QList<QImage> thumbnails = QtConcurrent::blockingMapped(images, scale); return 0; } |