diff options
| author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-07-07 15:19:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-07 15:19:00 +0200 |
| commit | e225a721807b00297a5733e9d60fe2b5603de77c (patch) | |
| tree | 91d9e3ba54a32cb5724f0297dd842b990f065db7 /launcher/minecraft/auth | |
| parent | 2cb22ad280ec0b540ec6e96759d478c60562bc9a (diff) | |
| parent | 13d67c6524a29daea51242d17ba0c6a2b8593747 (diff) | |
| download | PrismLauncher-e225a721807b00297a5733e9d60fe2b5603de77c.tar.gz PrismLauncher-e225a721807b00297a5733e9d60fe2b5603de77c.tar.bz2 PrismLauncher-e225a721807b00297a5733e9d60fe2b5603de77c.zip | |
Merge pull request #1128 from pandaninjas/fix-implicit-fallthrough
Diffstat (limited to 'launcher/minecraft/auth')
| -rw-r--r-- | launcher/minecraft/auth/AccountList.cpp | 12 | ||||
| -rw-r--r-- | launcher/minecraft/auth/Yggdrasil.cpp | 1 |
2 files changed, 9 insertions, 4 deletions
diff --git a/launcher/minecraft/auth/AccountList.cpp b/launcher/minecraft/auth/AccountList.cpp index c2794147..d6f42b75 100644 --- a/launcher/minecraft/auth/AccountList.cpp +++ b/launcher/minecraft/auth/AccountList.cpp @@ -328,6 +328,9 @@ QVariant AccountList::data(const QModelIndex &index, int role) const case AccountState::Gone: { return tr("Gone", "Account status"); } + default: { + return tr("Unknown", "Account status"); + } } } @@ -354,11 +357,12 @@ QVariant AccountList::data(const QModelIndex &index, int role) const return QVariant::fromValue(account); case Qt::CheckStateRole: - switch (index.column()) - { - case ProfileNameColumn: - return account == m_defaultAccount ? Qt::Checked : Qt::Unchecked; + if (index.column() == ProfileNameColumn) { + return account == m_defaultAccount ? Qt::Checked : Qt::Unchecked; + } else { + return QVariant(); } + default: return QVariant(); diff --git a/launcher/minecraft/auth/Yggdrasil.cpp b/launcher/minecraft/auth/Yggdrasil.cpp index 29978411..d3e7ccdd 100644 --- a/launcher/minecraft/auth/Yggdrasil.cpp +++ b/launcher/minecraft/auth/Yggdrasil.cpp @@ -273,6 +273,7 @@ void Yggdrasil::processReply() { AccountTaskState::STATE_FAILED_GONE, tr("The Mojang account no longer exists. It may have been migrated to a Microsoft account.") ); + return; } default: changeState( |
