summaryrefslogtreecommitdiffstats
path: root/examples/widgets/windowcontainer/windowcontainer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/windowcontainer/windowcontainer.cpp')
-rw-r--r--examples/widgets/windowcontainer/windowcontainer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/widgets/windowcontainer/windowcontainer.cpp b/examples/widgets/windowcontainer/windowcontainer.cpp
index f7c146e2a9..a104949d1e 100644
--- a/examples/widgets/windowcontainer/windowcontainer.cpp
+++ b/examples/widgets/windowcontainer/windowcontainer.cpp
@@ -100,7 +100,7 @@ public:
if (!m_mouseDown) {
m_mouseDown = true;
m_polygon.clear();
- m_polygon.append(e->pos());
+ m_polygon.append(e->position().toPoint());
renderLater();
}
}
@@ -108,7 +108,7 @@ public:
void mouseMoveEvent(QMouseEvent *e) override
{
if (m_mouseDown) {
- m_polygon.append(e->pos());
+ m_polygon.append(e->position().toPoint());
renderLater();
}
}
@@ -117,7 +117,7 @@ public:
{
if (m_mouseDown) {
m_mouseDown = false;
- m_polygon.append(e->pos());
+ m_polygon.append(e->position().toPoint());
renderLater();
}
}