From db07a2035562f3e1843b9fefdfb98b8e6149fe33 Mon Sep 17 00:00:00 2001 From: Shawn Rutledge Date: Mon, 14 Sep 2020 15:23:03 +0200 Subject: [PATCH] Remove QPointerEvent::isPointAccepted() and setPointAccepted() They are redundant, not in use, and got added without implementation in a81859a3c8d0f8b4367fc63988e1d653d34ed48a. Change-Id: Ifed1fbf97a8158c2801df09dac47bf1fc90795d4 Reviewed-by: Volker Hilsheimer --- src/gui/kernel/qevent.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gui/kernel/qevent.h b/src/gui/kernel/qevent.h index dd9e76dcd96..e4a35ed994a 100644 --- a/src/gui/kernel/qevent.h +++ b/src/gui/kernel/qevent.h @@ -189,8 +189,6 @@ public: virtual bool isPressEvent() const { return false; } virtual bool isUpdateEvent() const { return false; } virtual bool isReleaseEvent() const { return false; } - bool isPointAccepted(const QEventPoint &point) const; - void setPointAccepted(const QEventPoint &point, bool accepted = true); QObject *exclusiveGrabber(const QEventPoint &point) const; void setExclusiveGrabber(const QEventPoint &point, QObject *exclusiveGrabber); QList> passiveGrabbers(const QEventPoint &point) const;