aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquicklistview/tst_qquicklistview.cpp')
-rw-r--r--tests/auto/quick/qquicklistview/tst_qquicklistview.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp b/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp
index 56c3f370d2..4f504103d4 100644
--- a/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp
+++ b/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp
@@ -352,7 +352,7 @@ private:
QQuickView *m_view;
QString testForView;
- QTouchDevice *touchDevice = QTest::createTouchDevice();
+ QPointingDevice *touchDevice = QTest::createTouchDevice();
};
class TestObject : public QObject
@@ -9673,8 +9673,7 @@ void tst_QQuickListView::touchCancel() // QTBUG-74679
// and because Flickable filtered it, QQuickFlickablePrivate::pressed
// should be true, but it's not easily tested here
- QTouchEvent cancelEvent(QEvent::TouchCancel);
- cancelEvent.setDevice(touchDevice);
+ QTouchEvent cancelEvent(QEvent::TouchCancel, touchDevice);
QCoreApplication::sendEvent(window.data(), &cancelEvent);
// now QQuickWindowPrivate::sendUngrabEvent() will be called, Flickable will filter it,
// QQuickFlickablePrivate::pressed will be set to false, and that will allow setCurrentIndex() to make it move