summaryrefslogtreecommitdiff
path: root/src/transfersavesdialog.h
diff options
context:
space:
mode:
authorAL <26797547+Al12rs@users.noreply.github.com>2020-11-28 17:21:33 +0100
committerAL <26797547+Al12rs@users.noreply.github.com>2020-11-28 17:21:33 +0100
commitd99e576db8913af8ff864fcce9f67f51be252e99 (patch)
tree85c7d981bfd13ebf5674b680f1e8f89368b64aa1 /src/transfersavesdialog.h
parenta0229380ce08715198a1181b61c2f357ad641ca8 (diff)
parent2c115e48cc42f89250bbca7e2b5b75d5dcad8695 (diff)
Merge branch 'master' into Al12rs-refresh-waitForApplication
Diffstat (limited to 'src/transfersavesdialog.h')
-rw-r--r--src/transfersavesdialog.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/transfersavesdialog.h b/src/transfersavesdialog.h
index b983ad9e..fe78aa83 100644
--- a/src/transfersavesdialog.h
+++ b/src/transfersavesdialog.h
@@ -80,9 +80,10 @@ private:
MOBase::IPluginGame const *m_GamePlugin;
- typedef std::unique_ptr<MOBase::ISaveGame const> SaveListItem;
- typedef std::vector<SaveListItem> SaveList;
- typedef std::map<QString, SaveList> SaveCollection;
+ using SaveListItem = std::shared_ptr<const MOBase::ISaveGame>;
+ using SaveList = std::vector<SaveListItem>;
+ using SaveCollection = std::map<QString, SaveList>;
+
SaveCollection m_GlobalSaves;
SaveCollection m_LocalSaves;