diff options
author | 2022-08-27 21:29:04 +0530 | |
---|---|---|
committer | 2022-08-27 21:29:04 +0530 | |
commit | 771625dae018af75304a0d2a7c942eb2f6e16e0a (patch) | |
tree | 5cc28cd9d09e983ea5e91b123f2f96af970677ba /src/lock.h | |
parent | 54f97210d9171bb61fa9795d0328c512d684bc39 (diff) | |
download | whatsie-4.8.0.tar.gz whatsie-4.8.0.zip |
chore: unlock action buttonv4.8.0
- use unlock action button instead of pushbutton
Diffstat (limited to 'src/lock.h')
-rw-r--r-- | src/lock.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,7 @@ #ifndef LOCK_H #define LOCK_H +#include <QAction> #include <QSettings> #include <QWidget> @@ -21,8 +22,7 @@ private slots: void on_passcode2_textChanged(const QString &arg1); void on_setPass_clicked(); bool check_password_set(); - void on_unlock_clicked(); - void on_passcodeLogin_textChanged(const QString &arg1); + void on_passcodeLogin_textChanged(const QString &arg1); void on_passcodeLogin_returnPressed(); bool getCapsLockOn(); void checkCaps(); @@ -47,6 +47,7 @@ private: Ui::Lock *ui; bool isLocked = true; QSettings settings; + QAction *passcodeLoginAction; }; #endif // LOCK_H |