From 59dc3816b47f647e55cda69329e4f103847839d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Mon, 15 Feb 2016 10:36:42 +0100 Subject: [PATCH] Add missing override to LockScreenFilter --- input.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/input.cpp b/input.cpp index df4b2f7124..fbec574917 100644 --- a/input.cpp +++ b/input.cpp @@ -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; }