aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/quicktemplates2/qquickdrawer.cpp2
-rw-r--r--src/quicktemplates2/qquickdrawer_p_p.h2
-rw-r--r--src/quicktemplates2/qquickoverlay.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/quicktemplates2/qquickdrawer.cpp b/src/quicktemplates2/qquickdrawer.cpp
index a149eb54..e848c160 100644
--- a/src/quicktemplates2/qquickdrawer.cpp
+++ b/src/quicktemplates2/qquickdrawer.cpp
@@ -239,7 +239,7 @@ static bool dragOverThreshold(qreal d, Qt::Axis axis, QMouseEvent *event, int th
return QQuickWindowPrivate::dragOverThreshold(d, axis, event, threshold);
}
-bool QQuickDrawerPrivate::startDrag(QQuickWindow *window, QMouseEvent *event)
+bool QQuickDrawerPrivate::startDrag(QMouseEvent *event)
{
if (!window || !interactive || dragMargin < 0.0 || qFuzzyIsNull(dragMargin))
return false;
diff --git a/src/quicktemplates2/qquickdrawer_p_p.h b/src/quicktemplates2/qquickdrawer_p_p.h
index ae873602..388e926b 100644
--- a/src/quicktemplates2/qquickdrawer_p_p.h
+++ b/src/quicktemplates2/qquickdrawer_p_p.h
@@ -70,7 +70,7 @@ public:
void reposition() override;
void resizeOverlay() override;
- bool startDrag(QQuickWindow *window, QMouseEvent *event);
+ bool startDrag(QMouseEvent *event);
bool grabMouse(QMouseEvent *event);
bool ungrabMouse(QMouseEvent *event);
diff --git a/src/quicktemplates2/qquickoverlay.cpp b/src/quicktemplates2/qquickoverlay.cpp
index d31186cd..cba87849 100644
--- a/src/quicktemplates2/qquickoverlay.cpp
+++ b/src/quicktemplates2/qquickoverlay.cpp
@@ -338,7 +338,7 @@ void QQuickOverlay::mousePressEvent(QMouseEvent *event)
const QVector<QQuickDrawer *> drawers = d->stackingOrderDrawers();
for (QQuickDrawer *drawer : drawers) {
QQuickDrawerPrivate *p = QQuickDrawerPrivate::get(drawer);
- if (p->startDrag(window(), event)) {
+ if (p->startDrag(event)) {
d->setMouseGrabberPopup(drawer);
return;
}