diff options
author | Andrew <forkk@forkk.net> | 2013-11-20 12:20:35 -0600 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-11-20 12:20:35 -0600 |
commit | 03652b01d2ec8a7c54fb39dd8ed660f0bbc2fa2a (patch) | |
tree | 35284783b05358446f3ade625096d3a86cb045b5 /gui/dialogs | |
parent | 928e0d0b151a4690a5849c2ec4a44d97338937c5 (diff) | |
download | MultiMC-03652b01d2ec8a7c54fb39dd8ed660f0bbc2fa2a.tar MultiMC-03652b01d2ec8a7c54fb39dd8ed660f0bbc2fa2a.tar.gz MultiMC-03652b01d2ec8a7c54fb39dd8ed660f0bbc2fa2a.tar.lz MultiMC-03652b01d2ec8a7c54fb39dd8ed660f0bbc2fa2a.tar.xz MultiMC-03652b01d2ec8a7c54fb39dd8ed660f0bbc2fa2a.zip |
Add a button to open the account list.
Also fix the account list dialog's close button.
Diffstat (limited to 'gui/dialogs')
-rw-r--r-- | gui/dialogs/AccountListDialog.cpp | 2 | ||||
-rw-r--r-- | gui/dialogs/AccountListDialog.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gui/dialogs/AccountListDialog.cpp b/gui/dialogs/AccountListDialog.cpp index 5a73cb18..af074514 100644 --- a/gui/dialogs/AccountListDialog.cpp +++ b/gui/dialogs/AccountListDialog.cpp @@ -56,7 +56,7 @@ void AccountListDialog::on_editAccountBtn_clicked() // TODO } -void AccountListDialog::on_closedBtnBox_rejected() +void AccountListDialog::on_closeBtnBox_rejected() { close(); } diff --git a/gui/dialogs/AccountListDialog.h b/gui/dialogs/AccountListDialog.h index 57c8b460..99dee639 100644 --- a/gui/dialogs/AccountListDialog.h +++ b/gui/dialogs/AccountListDialog.h @@ -43,7 +43,7 @@ slots: void on_editAccountBtn_clicked(); // This will be sent when the "close" button is clicked. - void on_closedBtnBox_rejected(); + void on_closeBtnBox_rejected(); protected: std::shared_ptr<MojangAccountList> m_accounts; |