diff options
author | txtsd <code@ihavea.quest> | 2022-11-04 15:39:41 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-04 15:39:41 +0530 |
commit | 8f045af8679e9ae1da120eb56e4cec452284ac56 (patch) | |
tree | 494945886ba7070b23b4256c72896705ad47e04a /launcher/ui/pages/modplatform/atlauncher | |
parent | 2cf4d5f8ecd4afb1179b5a4e3bf694bcd359b628 (diff) | |
parent | 7956e6f04e32448b0043a49ff08873e117ba0a0b (diff) | |
download | PrismLauncher-8f045af8679e9ae1da120eb56e4cec452284ac56.tar.gz PrismLauncher-8f045af8679e9ae1da120eb56e4cec452284ac56.tar.bz2 PrismLauncher-8f045af8679e9ae1da120eb56e4cec452284ac56.zip |
Merge pull request #374 from flowln/fix_lto
Diffstat (limited to 'launcher/ui/pages/modplatform/atlauncher')
-rw-r--r-- | launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.cpp | 2 | ||||
-rw-r--r-- | launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.cpp b/launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.cpp index c68e40ba..f5f50cae 100644 --- a/launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.cpp +++ b/launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.cpp @@ -53,7 +53,7 @@ std::optional<QVector<QString>> AtlUserInteractionSupportImpl::chooseOptionalMod return optionalModDialog.getResult(); } -QString AtlUserInteractionSupportImpl::chooseVersion(Meta::VersionListPtr vlist, QString minecraftVersion) +QString AtlUserInteractionSupportImpl::chooseVersion(Meta::VersionList::Ptr vlist, QString minecraftVersion) { VersionSelectDialog vselect(vlist.get(), "Choose Version", m_parent, false); if (minecraftVersion != nullptr) { diff --git a/launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.h b/launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.h index 3b37c9be..37010b3f 100644 --- a/launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.h +++ b/launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.h @@ -46,7 +46,7 @@ public: AtlUserInteractionSupportImpl(QWidget* parent); private: - QString chooseVersion(Meta::VersionListPtr vlist, QString minecraftVersion) override; + QString chooseVersion(Meta::VersionList::Ptr vlist, QString minecraftVersion) override; std::optional<QVector<QString>> chooseOptionalMods(ATLauncher::PackVersion version, QVector<ATLauncher::VersionMod> mods) override; void displayMessage(QString message) override; |