From a061a646429c6e9d695458fc0ecb0021a30e12ee Mon Sep 17 00:00:00 2001 From: Shawn Rutledge Date: Thu, 4 Jun 2020 18:07:06 +0200 Subject: 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 --- examples/widgets/touch/fingerpaint/scribblearea.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/widgets/touch/fingerpaint') diff --git a/examples/widgets/touch/fingerpaint/scribblearea.cpp b/examples/widgets/touch/fingerpaint/scribblearea.cpp index 4af0ec8e7e..ed06545b43 100644 --- a/examples/widgets/touch/fingerpaint/scribblearea.cpp +++ b/examples/widgets/touch/fingerpaint/scribblearea.cpp @@ -216,13 +216,13 @@ bool ScribbleArea::event(QEvent *event) QPainter painter(&image); painter.setPen(Qt::NoPen); painter.setBrush(myPenColors.at(touchPoint.id() % myPenColors.count())); - painter.drawEllipse(touchPoint.pos(), diams.width() / 2, diams.height() / 2); + painter.drawEllipse(touchPoint.position(), diams.width() / 2, diams.height() / 2); painter.end(); modified = true; const int rad = 2; QRectF rect(QPointF(), diams); - rect.moveCenter(touchPoint.pos()); + rect.moveCenter(touchPoint.position()); update(rect.toRect().adjusted(-rad,-rad, +rad, +rad)); } break; -- cgit v1.2.3