| 123456789101112131415161718192021222324252627282930 |
- #ifndef DIALOGCHANGEPASS_H
- #define DIALOGCHANGEPASS_H
- #include <QDialog>
- namespace Ui {
- class DialogChangePass;
- }
- class DialogChangePass : public QDialog
- {
- Q_OBJECT
-
- public:
- explicit DialogChangePass(QWidget *parent = 0);
- void setUserHash(QString userHash);
- void setHost(QString host);
- ~DialogChangePass();
-
- private slots:
- void on_buttonBox_accepted();
- private:
- Ui::DialogChangePass *ui;
- QString userHash;
- QString host;
- };
- #endif // DIALOGCHANGEPASS_H
|