diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-08-14 02:27:01 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-08-14 02:27:01 +0200 |
commit | 0adb572a07d13a35bdb378ba024655de6a9967b3 (patch) | |
tree | 9c2d1b4b0e45669f181841adc584017549e86648 /application/dialogs/EditAccountDialog.h | |
parent | 8ed10c5b8142243481305c5cba8318eed2f4a120 (diff) | |
download | MultiMC-0adb572a07d13a35bdb378ba024655de6a9967b3.tar MultiMC-0adb572a07d13a35bdb378ba024655de6a9967b3.tar.gz MultiMC-0adb572a07d13a35bdb378ba024655de6a9967b3.tar.lz MultiMC-0adb572a07d13a35bdb378ba024655de6a9967b3.tar.xz MultiMC-0adb572a07d13a35bdb378ba024655de6a9967b3.zip |
NOISSUE improve account UI
Diffstat (limited to 'application/dialogs/EditAccountDialog.h')
-rw-r--r-- | application/dialogs/EditAccountDialog.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/application/dialogs/EditAccountDialog.h b/application/dialogs/EditAccountDialog.h index df8b21bf..e1f6f401 100644 --- a/application/dialogs/EditAccountDialog.h +++ b/application/dialogs/EditAccountDialog.h @@ -31,14 +31,10 @@ public: int flags = UsernameField | PasswordField); ~EditAccountDialog(); - /*! - * Gets the text entered in the dialog's username field. - */ - QString username() const; + void setUsername(const QString & user) const; + void setPassword(const QString & pass) const; - /*! - * Gets the text entered in the dialog's password field. - */ + QString username() const; QString password() const; enum Flags |