summaryrefslogtreecommitdiffstats
path: root/heimdall-frontend/source/FirmwareInfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'heimdall-frontend/source/FirmwareInfo.cpp')
-rw-r--r--heimdall-frontend/source/FirmwareInfo.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/heimdall-frontend/source/FirmwareInfo.cpp b/heimdall-frontend/source/FirmwareInfo.cpp
index c01d636..7a1043c 100644
--- a/heimdall-frontend/source/FirmwareInfo.cpp
+++ b/heimdall-frontend/source/FirmwareInfo.cpp
@@ -720,10 +720,10 @@ void FirmwareInfo::WriteXml(QXmlStreamWriter& xml) const
xml.writeStartElement("developers");
- for (int i = 0; i < developers.length(); i++)
+ for (const QString& developer : developers)
{
xml.writeStartElement("name");
- xml.writeCharacters(developers[i]);
+ xml.writeCharacters(developer);
xml.writeEndElement();
}
@@ -745,8 +745,10 @@ void FirmwareInfo::WriteXml(QXmlStreamWriter& xml) const
xml.writeStartElement("devices");
- for (int i = 0; i < deviceInfos.length(); i++)
- deviceInfos[i].WriteXml(xml);
+ for (const DeviceInfo& deviceInfo : deviceInfos)
+ {
+ deviceInfo.WriteXml(xml);
+ }
xml.writeEndElement();