changes to connection dialog (#2503)

This commit is contained in:
Zach H 2017-03-19 20:24:58 -04:00 committed by GitHub
parent b5b9527c13
commit 4feb43cdcc
4 changed files with 61 additions and 30 deletions

View file

@ -40,7 +40,7 @@ private slots:
void updateDisplayInfo(const QString &saveName);
void rebuildComboBoxList();
private:
QLabel *hostLabel, *portLabel, *playernameLabel, *passwordLabel, *saveLabel;
QLabel *hostLabel, *portLabel, *playernameLabel, *passwordLabel, *saveLabel, *publicServersLabel;
QLineEdit *hostEdit, *portEdit, *playernameEdit, *passwordEdit, *saveEdit;
QCheckBox *savePasswordCheckBox, *autoConnectCheckBox;
QComboBox *previousHosts;
@ -48,5 +48,4 @@ private:
QPushButton *btnOk, *btnCancel, *btnForgotPassword;
QMap<QString, UserConnection_Information> savedHostList;
};
#endif