aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/util/qquickpath.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2025-09-26 08:07:09 +0200
committerUlf Hermann <ulf.hermann@qt.io>2025-12-05 00:07:28 +0100
commit525804f244cedb3bd9abe075d7e654ff3d97c05e (patch)
tree92487c64e986242914d5a86acf639f1c97fd59a5 /src/quick/util/qquickpath.cpp
parentdce378678594b5e5b26fea6beb883879fe1a794f (diff)
Replace QSequentialIterable with QMetaSequence::Iterable
QSequentialIterable is deprecated. Task-number: QTBUG-140181 Change-Id: I797c18fa5c319e5c1a0114448d98a38aad33ae04 Reviewed-by: Olivier De Cannière <olivier.decanniere@qt.io>
Diffstat (limited to 'src/quick/util/qquickpath.cpp')
-rw-r--r--src/quick/util/qquickpath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quick/util/qquickpath.cpp b/src/quick/util/qquickpath.cpp
index 4cff9565d2..bcb15e38d8 100644
--- a/src/quick/util/qquickpath.cpp
+++ b/src/quick/util/qquickpath.cpp
@@ -2921,7 +2921,7 @@ void QQuickPathPolyline::setPath(const QVariant &path)
QVariantList vl = path.value<QVariantList>();
// If path is a QJSValue, e.g. coming from a JS array of Qt.point() in QML,
// then path.value<QVariantList>() is inefficient.
- // TODO We should be able to iterate over path.value<QSequentialIterable>() eventually
+ // TODO We should be able to iterate over path.value<QMetaSequence::Iterable>() eventually
for (const QVariant &v : vl)
pathList.append(v.toPointF());
setPath(pathList);