summaryrefslogtreecommitdiffstats
path: root/examples/widgets/widgets/scribble/scribblearea.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/widgets/scribble/scribblearea.cpp')
-rw-r--r--examples/widgets/widgets/scribble/scribblearea.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/widgets/widgets/scribble/scribblearea.cpp b/examples/widgets/widgets/scribble/scribblearea.cpp
index d3937f90d8..2ac293d55a 100644
--- a/examples/widgets/widgets/scribble/scribblearea.cpp
+++ b/examples/widgets/widgets/scribble/scribblearea.cpp
@@ -132,7 +132,7 @@ void ScribbleArea::mousePressEvent(QMouseEvent *event)
//! [11] //! [12]
{
if (event->button() == Qt::LeftButton) {
- lastPoint = event->pos();
+ lastPoint = event->position().toPoint();
scribbling = true;
}
}
@@ -140,13 +140,13 @@ void ScribbleArea::mousePressEvent(QMouseEvent *event)
void ScribbleArea::mouseMoveEvent(QMouseEvent *event)
{
if ((event->buttons() & Qt::LeftButton) && scribbling)
- drawLineTo(event->pos());
+ drawLineTo(event->position().toPoint());
}
void ScribbleArea::mouseReleaseEvent(QMouseEvent *event)
{
if (event->button() == Qt::LeftButton && scribbling) {
- drawLineTo(event->pos());
+ drawLineTo(event->position().toPoint());
scribbling = false;
}
}