Replace missing qAsConst with std::as_const()

Patch missing leftovers after recent batch patch.

Amends 8eb4d52342

Change-Id: I5469b8c10e6844cd1911f719ce3dddbb42697f95
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2022-10-10 16:04:17 +02:00
parent 213c879882
commit e54fb7ab64
15 changed files with 24 additions and 24 deletions

View File

@@ -250,7 +250,7 @@ void DocSettingsPageWidget::addDocumentation()
QSet<QString> values = Utils::toSet(m_filesToUnregister.values(nameSpace));
values.remove(filePath);
m_filesToUnregister.remove(nameSpace);
for (const QString &value : qAsConst(values))
for (const QString &value : std::as_const(values))
m_filesToUnregister.insert(nameSpace, value);
}
}