summaryrefslogtreecommitdiffstats
path: root/examples/nfc/ndefeditor/mainwindow.cpp
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@qt.io>2018-11-21 13:46:35 +0100
committerAlex Blasche <alexander.blasche@qt.io>2018-11-22 09:37:16 +0100
commitc3820b3d04aca98ee4e0d5eb85b23819c039532f (patch)
tree3d5b149c4c32fb7934d33e114e47f05500bc2fa0 /examples/nfc/ndefeditor/mainwindow.cpp
parent6cdb8dc9cd8a518d050d08be79938feee7a9bde2 (diff)
parent0446463da215fb14a6d5e70f3f9e5d8c2137d296 (diff)
Merge remote-tracking branch 'gerrit/dev' into win32
Diffstat (limited to 'examples/nfc/ndefeditor/mainwindow.cpp')
-rw-r--r--examples/nfc/ndefeditor/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/nfc/ndefeditor/mainwindow.cpp b/examples/nfc/ndefeditor/mainwindow.cpp
index 38865b88..869f1790 100644
--- a/examples/nfc/ndefeditor/mainwindow.cpp
+++ b/examples/nfc/ndefeditor/mainwindow.cpp
@@ -266,7 +266,7 @@ void MainWindow::ndefMessageRead(const QNdefMessage &message)
{
clearMessage();
- foreach (const QNdefRecord &record, message) {
+ for (const QNdefRecord &record : message) {
if (record.isRecordType<QNdefNfcTextRecord>()) {
addRecord<TextRecordEditor>(ui, record);
} else if (record.isRecordType<QNdefNfcUriRecord>()) {