QmlPuppet: Replace some foreach

Change-Id: I59b4049282564762f75aa5e9a7a0b7eba055db48
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2019-07-25 16:58:50 +02:00
parent a6c85993ba
commit a34bf6a23b
5 changed files with 6 additions and 6 deletions
@@ -303,9 +303,8 @@ void NodeInstanceClientProxy::readDataStream()
break;
}
foreach (const QVariant &command, commandList) {
for (const QVariant &command : qAsConst(commandList))
dispatchCommand(command);
}
}
void NodeInstanceClientProxy::sendPuppetAliveCommand()