summaryrefslogtreecommitdiffstats
path: root/examples/widgets/widgets/shapedclock/shapedclock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/widgets/shapedclock/shapedclock.cpp')
-rw-r--r--examples/widgets/widgets/shapedclock/shapedclock.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/widgets/widgets/shapedclock/shapedclock.cpp b/examples/widgets/widgets/shapedclock/shapedclock.cpp
index 673d1a218f..343ad7c43c 100644
--- a/examples/widgets/widgets/shapedclock/shapedclock.cpp
+++ b/examples/widgets/widgets/shapedclock/shapedclock.cpp
@@ -82,7 +82,7 @@ ShapedClock::ShapedClock(QWidget *parent)
void ShapedClock::mousePressEvent(QMouseEvent *event)
{
if (event->button() == Qt::LeftButton) {
- dragPosition = event->globalPos() - frameGeometry().topLeft();
+ dragPosition = event->globalPosition().toPoint() - frameGeometry().topLeft();
event->accept();
}
}
@@ -92,7 +92,7 @@ void ShapedClock::mousePressEvent(QMouseEvent *event)
void ShapedClock::mouseMoveEvent(QMouseEvent *event)
{
if (event->buttons() & Qt::LeftButton) {
- move(event->globalPos() - dragPosition);
+ move(event->globalPosition().toPoint() - dragPosition);
event->accept();
}
}