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:
@@ -53,8 +53,8 @@ ActionMacroHandler::ActionMacroHandler()
|
||||
this, &ActionMacroHandler::addCommand);
|
||||
|
||||
// Register all existing scriptable actions
|
||||
QList<Command *> commands = ActionManager::commands();
|
||||
foreach (Command *command, commands) {
|
||||
const QList<Command *> commands = ActionManager::commands();
|
||||
for (Command *command : commands) {
|
||||
if (command->isScriptable())
|
||||
registerCommand(command->id());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user