diff options
| author | Tannin <sherb@gmx.net> | 2015-11-23 21:41:25 +0100 |
|---|---|---|
| committer | Tannin <sherb@gmx.net> | 2015-11-23 21:41:25 +0100 |
| commit | 9945b5e92629027da1ef17b1ae1460729102b374 (patch) | |
| tree | acc5b1f58e880f21eb95a421aa649b66fab60a40 /src/transfersavesdialog.cpp | |
| parent | dbbd0c4eec8291fba7ce21670978255ec1ca2dbf (diff) | |
added support for fallout 4 savegames
Diffstat (limited to 'src/transfersavesdialog.cpp')
| -rw-r--r-- | src/transfersavesdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transfersavesdialog.cpp b/src/transfersavesdialog.cpp index 73267f75..7f9879cf 100644 --- a/src/transfersavesdialog.cpp +++ b/src/transfersavesdialog.cpp @@ -77,7 +77,7 @@ void TransferSavesDialog::refreshLocalSaves() QStringList files = savesDir.entryList(QDir::Files, QDir::Time);
- foreach (const QString &filename, files) {
+ for (const QString &filename : files) {
SaveGameGamebryo *save = new SaveGameGamebryo(this, savesDir.absoluteFilePath(filename));
save->setParent(this);
m_LocalSaves.push_back(save);
|
