┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMéven Car <[email protected]>2026-03-22 14:18:28 +0100
committerMéven Car <[email protected]>2026-03-22 14:20:33 +0100
commitea877b191a7975d800b9d0f5c9e971dea1179f21 (patch)
treee761f3926f41a4fda637432d30fce13f53c7bc62 /src
parenta043b94618052898b5c606c09ea80517fa307775 (diff)
kitemviews: ensure endPositionChanged slot has the correct definition
Diffstat (limited to 'src')
-rw-r--r--src/kitemviews/kitemlistview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kitemviews/kitemlistview.cpp b/src/kitemviews/kitemlistview.cpp
index e828b6967..ccc96a7ae 100644
--- a/src/kitemviews/kitemlistview.cpp
+++ b/src/kitemviews/kitemlistview.cpp
@@ -133,7 +133,7 @@ KItemListView::KItemListView(QGraphicsWidget *parent)
}
update();
});
- connect(m_tapAndHoldIndicator, &KItemListRubberBand::endPositionChanged, this, [this]() {
+ connect(m_tapAndHoldIndicator, &KItemListRubberBand::endPositionChanged, this, [this](const QPointF &, const QPointF &) {
if (m_tapAndHoldIndicator->isActive()) {
update();
}