summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBradley T. Hughes <bradley.hughes@nokia.com>2009-06-08 10:31:04 (GMT)
committerBradley T. Hughes <bradley.hughes@nokia.com>2009-06-08 10:31:04 (GMT)
commitbe15f967163a0e92e517920278b648c2ffc25eb9 (patch)
tree41105c413b6fe71161bc13aa154c3fb6a03fd196
parenta76b42f3a5ccbe82660aff03fa18dd9bbdd53f52 (diff)
downloadQt-be15f967163a0e92e517920278b648c2ffc25eb9.zip
Qt-be15f967163a0e92e517920278b648c2ffc25eb9.tar.gz
Qt-be15f967163a0e92e517920278b648c2ffc25eb9.tar.bz2
Send the TouchEnd event with Qt::TouchPointReleased mask
The mask isn't used and changing it doesn't do anything, so this is just a cosmetic/clarification change.
-rw-r--r--tests/auto/qtouchevent/tst_qtouchevent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qtouchevent/tst_qtouchevent.cpp b/tests/auto/qtouchevent/tst_qtouchevent.cpp
index 849ef80..1550935 100644
--- a/tests/auto/qtouchevent/tst_qtouchevent.cpp
+++ b/tests/auto/qtouchevent/tst_qtouchevent.cpp
@@ -210,7 +210,7 @@ void tst_QTouchEvent::touchUpdateAndEndNeverPropagate()
// send the touch end, same thing should happen as with touch update
QTouchEvent touchEndEvent(QEvent::TouchEnd,
Qt::NoModifier,
- Qt::TouchPointMoved,
+ Qt::TouchPointReleased,
touchPoints);
res = QApplication::sendEvent(&child, &touchEndEvent);
QVERIFY(res);