summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-08-11 10:32:53 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2019-08-11 10:32:53 +0200
commit11f8dc2d83260280b1473d731bce782153baf362 (patch)
treeff74e9991eaacd3731a8ec32e7d5a651185657ed /tests
parent2762073738d0343b2ba6e38624de2040c34bc393 (diff)
parent82a6d3426215253e013dd3ddd6712488388bc926 (diff)
downloadqtimageformats-11f8dc2d83260280b1473d731bce782153baf362.tar.gz
Merge remote-tracking branch 'origin/dev' into wip/qt6
Change-Id: Ic0596108d4f3af40f68e07b53a436eeb07fc9f55
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/tiff/tst_qtiff.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/tiff/tst_qtiff.cpp b/tests/auto/tiff/tst_qtiff.cpp
index f1db377..29d85df 100644
--- a/tests/auto/tiff/tst_qtiff.cpp
+++ b/tests/auto/tiff/tst_qtiff.cpp
@@ -496,7 +496,7 @@ void tst_qtiff::supportsOption()
allOptions.remove(QImageIOHandler::ImageOption(options.at(i)));
}
- foreach (QImageIOHandler::ImageOption option, allOptions)
+ for (QImageIOHandler::ImageOption option : qAsConst(allOptions))
QVERIFY(!writer.supportsOption(option));
}