added checkbox to disable password storage

This commit is contained in:
Max-Wilhelm Bruker 2012-03-03 15:54:50 +01:00
parent a27bc20887
commit 2487476fcc
2 changed files with 9 additions and 1 deletions

View file

@ -6,6 +6,7 @@
class QLabel;
class QPushButton;
class QCheckBox;
class DlgConnect : public QDialog {
Q_OBJECT
@ -20,6 +21,7 @@ private slots:
private:
QLabel *hostLabel, *portLabel, *playernameLabel, *passwordLabel;
QLineEdit *hostEdit, *portEdit, *playernameEdit, *passwordEdit;
QCheckBox *savePasswordCheckBox;
QPushButton *okButton, *cancelButton;
};