summaryrefslogtreecommitdiffstats
path: root/logic/auth/MojangAccountList.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2013-12-15 18:10:51 +0100
committerPetr Mrázek <peterix@gmail.com>2013-12-15 18:13:46 +0100
commitdd9e04000ccd02a868138de9276f8fb93b855550 (patch)
tree496985ef1c0d0d1ba724948b87aaf641a78c624b /logic/auth/MojangAccountList.cpp
parent5a3043398e45cbe39455609a42463f2e6e5d3fd2 (diff)
downloadMultiMC-dd9e04000ccd02a868138de9276f8fb93b855550.tar
MultiMC-dd9e04000ccd02a868138de9276f8fb93b855550.tar.gz
MultiMC-dd9e04000ccd02a868138de9276f8fb93b855550.tar.lz
MultiMC-dd9e04000ccd02a868138de9276f8fb93b855550.tar.xz
MultiMC-dd9e04000ccd02a868138de9276f8fb93b855550.zip
Improve group changing, update instance on version change
Gives a list of existing groups to choose from. Instances are updated as long as there is at least one valid account.
Diffstat (limited to 'logic/auth/MojangAccountList.cpp')
-rw-r--r--logic/auth/MojangAccountList.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/logic/auth/MojangAccountList.cpp b/logic/auth/MojangAccountList.cpp
index 937b4721..70bc0cf2 100644
--- a/logic/auth/MojangAccountList.cpp
+++ b/logic/auth/MojangAccountList.cpp
@@ -414,3 +414,13 @@ void MojangAccountList::setListFilePath(QString path, bool autosave)
m_listFilePath = path;
m_autosave = autosave;
}
+
+bool MojangAccountList::anyAccountIsValid()
+{
+ for(auto account:m_accounts)
+ {
+ if(account->accountStatus() != NotVerified)
+ return true;
+ }
+ return false;
+}