Merge remote-tracking branch 'weblate/master'
[GPXSee.git] / src / GUI / passwordedit.h
blob820db11fbaa608831be12db5c8dd6812141f30a9
1 #ifndef PASSWORDEDIT_H
2 #define PASSWORDEDIT_H
4 #include <QLineEdit>
6 class PasswordEdit : public QLineEdit
8 Q_OBJECT
10 public:
11 PasswordEdit(QWidget *parent = 0);
13 private slots:
14 void showPassword();
16 private:
17 QAction *_action;
18 bool _show;
21 #endif // PASSWORDEDIT_H