aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/util/qquickpath.cpp
diff options
context:
space:
mode:
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);