forked from qt-creator/qt-creator
macros: Remove foreach / Q_FOREACH usage
Task-number: QTCREATORBUG-27464 Change-Id: Id779aaf869406571288519083883ab57e5c29cec Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -732,7 +732,7 @@ void MercurialPluginPrivate::updateActions(VcsBasePluginPrivate::ActionState as)
|
||||
revertFile->setParameter(filename);
|
||||
statusFile->setParameter(filename);
|
||||
|
||||
foreach (QAction *repoAction, m_repositoryActionList)
|
||||
for (QAction *repoAction : qAsConst(m_repositoryActionList))
|
||||
repoAction->setEnabled(repoEnabled);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user