Add missing override to LockScreenFilter
This commit is contained in:
parent
41e16f56ec
commit
59dc3816b4
1 changed files with 3 additions and 3 deletions
|
@ -406,7 +406,7 @@ public:
|
|||
}
|
||||
return true;
|
||||
}
|
||||
bool touchDown(quint32 id, const QPointF &pos, quint32 time) {
|
||||
bool touchDown(quint32 id, const QPointF &pos, quint32 time) override {
|
||||
if (!waylandServer()->isScreenLocked()) {
|
||||
return false;
|
||||
}
|
||||
|
@ -420,7 +420,7 @@ public:
|
|||
}
|
||||
return true;
|
||||
}
|
||||
bool touchMotion(quint32 id, const QPointF &pos, quint32 time) {
|
||||
bool touchMotion(quint32 id, const QPointF &pos, quint32 time) override {
|
||||
if (!waylandServer()->isScreenLocked()) {
|
||||
return false;
|
||||
}
|
||||
|
@ -434,7 +434,7 @@ public:
|
|||
}
|
||||
return true;
|
||||
}
|
||||
bool touchUp(quint32 id, quint32 time) {
|
||||
bool touchUp(quint32 id, quint32 time) override {
|
||||
if (!waylandServer()->isScreenLocked()) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue