summaryrefslogtreecommitdiff
path: root/src/transfersavesdialog.cpp
diff options
context:
space:
mode:
authorTannin <sherb@gmx.net>2015-11-23 21:41:25 +0100
committerTannin <sherb@gmx.net>2015-11-23 21:41:25 +0100
commit9945b5e92629027da1ef17b1ae1460729102b374 (patch)
treeacc5b1f58e880f21eb95a421aa649b66fab60a40 /src/transfersavesdialog.cpp
parentdbbd0c4eec8291fba7ce21670978255ec1ca2dbf (diff)
added support for fallout 4 savegames
Diffstat (limited to 'src/transfersavesdialog.cpp')
-rw-r--r--src/transfersavesdialog.cpp2
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);