diff options
Diffstat (limited to 'logic')
-rw-r--r-- | logic/lists/MojangAccountList.cpp | 8 | ||||
-rw-r--r-- | logic/lists/MojangAccountList.h | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/logic/lists/MojangAccountList.cpp b/logic/lists/MojangAccountList.cpp index 32317f84..442ef3af 100644 --- a/logic/lists/MojangAccountList.cpp +++ b/logic/lists/MojangAccountList.cpp @@ -73,6 +73,14 @@ void MojangAccountList::removeAccount(const QString& username) onListChanged(); } +void MojangAccountList::removeAccount(QModelIndex index) +{ + beginResetModel(); + m_accounts.removeAt(index.row()); + endResetModel(); + onListChanged(); +} + void MojangAccountList::onListChanged() { diff --git a/logic/lists/MojangAccountList.h b/logic/lists/MojangAccountList.h index 491abf6d..bccc2f9a 100644 --- a/logic/lists/MojangAccountList.h +++ b/logic/lists/MojangAccountList.h @@ -73,6 +73,11 @@ public: virtual void removeAccount(const QString& username); /*! + * Removes the account at the given QModelIndex. + */ + virtual void removeAccount(QModelIndex index); + + /*! * \brief Finds an account by its username. * \param The username of the account to find. * \return A const pointer to the account with the given username. NULL if |