diff options
| author | Shawn Rutledge <shawn.rutledge@qt.io> | 2020-06-04 18:07:06 +0200 |
|---|---|---|
| committer | Shawn Rutledge <shawn.rutledge@qt.io> | 2020-06-08 19:11:51 +0200 |
| commit | a061a646429c6e9d695458fc0ecb0021a30e12ee (patch) | |
| tree | 7ba6fce7ee7c8975b0c50e31195bd02c5419fc15 /examples/opengl/hellogl2/glwidget.cpp | |
| parent | 24e52c10deedbaef833c0e2c3ee7bee03eacc4f5 (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 'examples/opengl/hellogl2/glwidget.cpp')
| -rw-r--r-- | examples/opengl/hellogl2/glwidget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/opengl/hellogl2/glwidget.cpp b/examples/opengl/hellogl2/glwidget.cpp index 543e70f8acf..99889020719 100644 --- a/examples/opengl/hellogl2/glwidget.cpp +++ b/examples/opengl/hellogl2/glwidget.cpp @@ -284,13 +284,13 @@ void GLWidget::resizeGL(int w, int h) void GLWidget::mousePressEvent(QMouseEvent *event) { - m_lastPos = event->pos(); + m_lastPos = event->position().toPoint(); } void GLWidget::mouseMoveEvent(QMouseEvent *event) { - int dx = event->x() - m_lastPos.x(); - int dy = event->y() - m_lastPos.y(); + int dx = event->position().toPoint().x() - m_lastPos.x(); + int dy = event->position().toPoint().y() - m_lastPos.y(); if (event->buttons() & Qt::LeftButton) { setXRotation(m_xRot + 8 * dy); @@ -299,5 +299,5 @@ void GLWidget::mouseMoveEvent(QMouseEvent *event) setXRotation(m_xRot + 8 * dy); setZRotation(m_zRot + 8 * dx); } - m_lastPos = event->pos(); + m_lastPos = event->position().toPoint(); } |
