diff options
author | 2023-05-17 21:59:43 +0530 | |
---|---|---|
committer | 2023-05-17 21:59:43 +0530 | |
commit | 5f10a0f9657358fcd86c55ec065f3855bad0c160 (patch) | |
tree | 340f949dbe076db57bf62879ad150fabc884905a /src/lock.h | |
parent | b4b5dc3397966bea899bbb5ec0f756bb745dbff1 (diff) | |
download | whatsie-5f10a0f9657358fcd86c55ec065f3855bad0c160.tar.gz whatsie-5f10a0f9657358fcd86c55ec065f3855bad0c160.zip |
feat: minor fixes + code cleanup
Diffstat (limited to 'src/lock.h')
-rw-r--r-- | src/lock.h | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -2,9 +2,15 @@ #define LOCK_H #include <QAction> -#include <QSettings> +#include <QDebug> +#include <QGraphicsOpacityEffect> +#include <QKeyEvent> +#include <QPropertyAnimation> #include <QWidget> +#include "moreapps.h" +#include "settingsmanager.h" + namespace Ui { class Lock; } @@ -47,7 +53,6 @@ protected slots: private: Ui::Lock *ui; bool isLocked = false; - QSettings settings; QAction *passcodeLoginAction; }; |