summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qwidget_p.h
diff options
context:
space:
mode:
authorBradley T. Hughes <bradley.hughes@nokia.com>2009-05-08 11:04:19 (GMT)
committerBradley T. Hughes <bradley.hughes@nokia.com>2009-05-08 11:04:19 (GMT)
commit58f25669087bf52357bc69f398b4713d33b03d1e (patch)
treeb678d9bb11ee25bbd6f25258eef83be019c7fd28 /src/gui/kernel/qwidget_p.h
parentf17c21cec25f40991865343c5f9c3e838e13d5d3 (diff)
downloadQt-58f25669087bf52357bc69f398b4713d33b03d1e.zip
Qt-58f25669087bf52357bc69f398b4713d33b03d1e.tar.gz
Qt-58f25669087bf52357bc69f398b4713d33b03d1e.tar.bz2
don't store event state in QWidgetPrivate
the only thing we store in the QWidgetPrivate is the current touch point list, nothing more (the rest is local state in the event translation code)
Diffstat (limited to 'src/gui/kernel/qwidget_p.h')
-rw-r--r--src/gui/kernel/qwidget_p.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/kernel/qwidget_p.h b/src/gui/kernel/qwidget_p.h
index 2ab9ffe..5f5e1b1 100644
--- a/src/gui/kernel/qwidget_p.h
+++ b/src/gui/kernel/qwidget_p.h
@@ -666,8 +666,7 @@ public:
QSize adjustedSize() const;
- QEvent::Type touchEventType;
- QList<QTouchEvent::TouchPoint *> currentTouchPoints, activeTouchPoints;
+ QList<QTouchEvent::TouchPoint *> currentTouchPoints;
};
inline QWExtra *QWidgetPrivate::extraData() const