summaryrefslogtreecommitdiffstats
path: root/tests/auto/gui/kernel/qmouseevent
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@qt.io>2020-06-04 18:07:06 +0200
committerShawn Rutledge <shawn.rutledge@qt.io>2020-06-08 19:11:51 +0200
commita061a646429c6e9d695458fc0ecb0021a30e12ee (patch)
tree7ba6fce7ee7c8975b0c50e31195bd02c5419fc15 /tests/auto/gui/kernel/qmouseevent
parent24e52c10deedbaef833c0e2c3ee7bee03eacc4f5 (diff)
Replace calls to deprecated QEvent accessor functions
Many of these were generated by clazy using the new qevent-accessors check. Change-Id: Ie17af17f50fdc9f47d7859d267c14568cc350fd0 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'tests/auto/gui/kernel/qmouseevent')
-rw-r--r--tests/auto/gui/kernel/qmouseevent/tst_qmouseevent.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/auto/gui/kernel/qmouseevent/tst_qmouseevent.cpp b/tests/auto/gui/kernel/qmouseevent/tst_qmouseevent.cpp
index a1de205571..1e813cc397 100644
--- a/tests/auto/gui/kernel/qmouseevent/tst_qmouseevent.cpp
+++ b/tests/auto/gui/kernel/qmouseevent/tst_qmouseevent.cpp
@@ -117,15 +117,15 @@ void tst_QMouseEvent::mouseEventBasic()
QCOMPARE(me.isAccepted(), true);
QCOMPARE(me.button(), Qt::LeftButton);
QCOMPARE(me.buttons(), Qt::LeftButton);
- QCOMPARE(me.localPos(), local);
- QCOMPARE(me.windowPos(), scene);
- QCOMPARE(me.screenPos(), screen);
+ QCOMPARE(me.position(), local);
+ QCOMPARE(me.scenePosition(), scene);
+ QCOMPARE(me.globalPosition(), screen);
QPointF changedLocal(33, 66);
me.setLocalPos(changedLocal);
- QCOMPARE(me.localPos(), changedLocal);
- QCOMPARE(me.windowPos(), scene);
- QCOMPARE(me.screenPos(), screen);
+ QCOMPARE(me.position(), changedLocal);
+ QCOMPARE(me.scenePosition(), scene);
+ QCOMPARE(me.globalPosition(), screen);
}
void tst_QMouseEvent::checkMousePressEvent_data()