Merge pull request #1270 from ctrlaltca/fix_1269
Fix change flag in edit account; Fix #1269
This commit is contained in:
commit
0d5e169648
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ public:
|
|||
DlgEditUser(QWidget *parent = 0, QString email = QString(), int gender = -1, QString country = QString(), QString realName = QString());
|
||||
QString getEmail() const { return emailEdit->text(); }
|
||||
int getGender() const { return genderEdit->currentIndex() - 1; }
|
||||
QString getCountry() const { return genderEdit->currentIndex() == 0 ? "" : countryEdit->currentText(); }
|
||||
QString getCountry() const { return countryEdit->currentIndex() == 0 ? "" : countryEdit->currentText(); }
|
||||
QString getRealName() const { return realnameEdit->text(); }
|
||||
private slots:
|
||||
void actOk();
|
||||
|
|
Loading…
Reference in a new issue