aboutsummaryrefslogtreecommitdiffstats
path: root/lang
diff options
context:
space:
mode:
Diffstat (limited to 'lang')
-rw-r--r--lang/qt/tests/t-tofuinfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/qt/tests/t-tofuinfo.cpp b/lang/qt/tests/t-tofuinfo.cpp
index a1871c4f..c8d35ada 100644
--- a/lang/qt/tests/t-tofuinfo.cpp
+++ b/lang/qt/tests/t-tofuinfo.cpp
@@ -162,7 +162,7 @@ private:
delete job;
QVERIFY(!sigResult.error());
- foreach (const auto uid, keys[0].userIDs()) {
+ for (const auto &uid : keys[0].userIDs()) {
auto info = uid.tofuInfo();
QVERIFY(info.signCount() == expected - 1);
}
@@ -387,7 +387,7 @@ private Q_SLOTS:
<< fi2.isReadable() << " size: " << fi2.size();
result = job->exec(QStringList(), false, keys);
- foreach (const auto key, keys) {
+ for (const auto &key : keys) {
qDebug() << "Key: " << key.userID(0).name() << " <"
<< key.userID(0).email()
<< ">\n fpr: " << key.primaryFingerprint();