aboutsummaryrefslogtreecommitdiff
path: root/launcher/MultiMC.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2021-07-26 21:44:11 +0200
committerPetr Mrázek <peterix@gmail.com>2021-08-15 23:18:50 +0200
commit3a53349e332599221bc325f7fac9dc7927194bc2 (patch)
tree2ee40fa6044c241b3b7db27fe0b83931b453c2b2 /launcher/MultiMC.h
parentfca2e9e44cb44004eec7f47c03b186bd5e44dc32 (diff)
downloadPrismLauncher-3a53349e332599221bc325f7fac9dc7927194bc2.tar.gz
PrismLauncher-3a53349e332599221bc325f7fac9dc7927194bc2.tar.bz2
PrismLauncher-3a53349e332599221bc325f7fac9dc7927194bc2.zip
GH-3392 dirty initial MSA support that shares logic with Mojang flows
Both act as the first step of AuthContext.
Diffstat (limited to 'launcher/MultiMC.h')
-rw-r--r--launcher/MultiMC.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/MultiMC.h b/launcher/MultiMC.h
index af2b41c1..59fd7345 100644
--- a/launcher/MultiMC.h
+++ b/launcher/MultiMC.h
@@ -24,7 +24,7 @@ class QFile;
class HttpMetaCache;
class SettingsObject;
class InstanceList;
-class MojangAccountList;
+class AccountList;
class IconList;
class QNetworkAccessManager;
class JavaInstallList;
@@ -111,7 +111,7 @@ public:
return m_mcedit.get();
}
- std::shared_ptr<MojangAccountList> accounts() const
+ std::shared_ptr<AccountList> accounts() const
{
return m_accounts;
}
@@ -188,7 +188,7 @@ private:
FolderInstanceProvider * m_instanceFolder = nullptr;
std::shared_ptr<IconList> m_icons;
std::shared_ptr<UpdateChecker> m_updateChecker;
- std::shared_ptr<MojangAccountList> m_accounts;
+ std::shared_ptr<AccountList> m_accounts;
std::shared_ptr<JavaInstallList> m_javalist;
std::shared_ptr<TranslationsModel> m_translations;
std::shared_ptr<GenericPageProvider> m_globalSettingsProvider;