diff options
| author | Christian Ehrlicher <[email protected]> | 2018-12-07 11:58:03 +0100 |
|---|---|---|
| committer | Christian Ehrlicher <[email protected]> | 2019-01-23 18:48:59 +0000 |
| commit | bce32c8ab8c547d0fc9d12d192546dde361443fa (patch) | |
| tree | 8a9a3a8e043bd68de8c7de242d58c207ea77e1db /examples/widgets/mainwindows/mdi/main.cpp | |
| parent | 770b4afeed37ddf036dcbc287b68f9f7b151af27 (diff) | |
Cleanup Widgets examples - foreach
Cleanup the Widgets examples - replace foreach with range-based for loop
in mainwindows and painting subdirectories
Change-Id: I3c1556dffd22e29dd0a5ba960e699291c496278a
Reviewed-by: Konstantin Shegunov <[email protected]>
Reviewed-by: Paul Wicking <[email protected]>
Reviewed-by: Luca Beldi <[email protected]>
Reviewed-by: Martin Smith <[email protected]>
Diffstat (limited to 'examples/widgets/mainwindows/mdi/main.cpp')
| -rw-r--r-- | examples/widgets/mainwindows/mdi/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/widgets/mainwindows/mdi/main.cpp b/examples/widgets/mainwindows/mdi/main.cpp index e23f5f6e603..950244ad53b 100644 --- a/examples/widgets/mainwindows/mdi/main.cpp +++ b/examples/widgets/mainwindows/mdi/main.cpp @@ -70,7 +70,8 @@ int main(int argc, char *argv[]) parser.process(app); MainWindow mainWin; - foreach (const QString &fileName, parser.positionalArguments()) + const QStringList posArgs = parser.positionalArguments(); + for (const QString &fileName : posArgs) mainWin.openFile(fileName); mainWin.show(); return app.exec(); |
