summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Tanner <trtanner@btinternet.com>2015-12-20 21:22:38 +0000
committerThomas Tanner <trtanner@btinternet.com>2015-12-20 21:22:38 +0000
commit6edf12f2f7089364611c7f979ad20fa867604477 (patch)
tree331c5cb22914b1b168aea54d82c53b64d5b3d60c /src
parentf55a5f2b21664ccd2af1c24ef68f14f73e418b1c (diff)
Rename the save game identifier method to make it clearer what it's for.
Diffstat (limited to 'src')
-rw-r--r--src/transfersavesdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transfersavesdialog.cpp b/src/transfersavesdialog.cpp
index b6be108b..2f1c41a1 100644
--- a/src/transfersavesdialog.cpp
+++ b/src/transfersavesdialog.cpp
@@ -63,7 +63,7 @@ public:
return QFileInfo(m_File).created();
}
- virtual QString getIdentifier() const override
+ virtual QString getSaveGroupIdentifier() const override
{
return m_File;
}
@@ -269,7 +269,7 @@ void TransferSavesDialog::refreshSaves(SaveCollection &saveCollection, QString c
for (const QString &filename : files) {
QString file = savesDir.absoluteFilePath(filename);
MOBase::ISaveGame const *save = info->getSaveGameInfo(file);
- saveCollection[save->getIdentifier()].push_back(
+ saveCollection[save->getSaveGroupIdentifier()].push_back(
std::unique_ptr<MOBase::ISaveGame const>(save));
}
}