summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qevent_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/kernel/qevent_p.h')
-rw-r--r--src/gui/kernel/qevent_p.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gui/kernel/qevent_p.h b/src/gui/kernel/qevent_p.h
index 23a171e6ab..c923af92c9 100644
--- a/src/gui/kernel/qevent_p.h
+++ b/src/gui/kernel/qevent_p.h
@@ -88,7 +88,6 @@ struct QEventPointPrivate {
int pointId = -1;
QEventPoint::State state = QEventPoint::State::Unknown;
bool accept = false;
- bool stationaryWithModifiedProperty = false;
};
// Private subclasses to allow accessing and modifying protected variables.
@@ -119,8 +118,6 @@ public:
void detach();
- bool stationaryWithModifiedProperty() const { return d->stationaryWithModifiedProperty; }
-
void setId(int pointId) { d->pointId = pointId; }
void setDevice(const QPointingDevice *device) { d->device = device; }
@@ -163,8 +160,6 @@ public:
void setVelocity(const QVector2D &v) { d->velocity = v; }
- void setStationaryWithModifiedProperty(bool s = true) { d->stationaryWithModifiedProperty = s; }
-
QWindow *window() const { return d->window.data(); }
void setWindow(const QPointer<QWindow> &w) { d->window = w; }