summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-06-24 12:11:36 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-06-24 22:24:52 +0200
commit4e12f5ee8641a8003b90575eb2a8bbf8dfa254a7 (patch)
tree158cc4f29eeb5d120b8c384fc7500511290dd8ac
parentbed687cefec7e1aa52e38dec66546ce7eeadfe4a (diff)
Use QList instead of QVector
Task-number: QTBUG-84469 Change-Id: I7064d93ed0302b98bfa896825d4b0eb467dc765a Reviewed-by: Sona Kurazyan <sona.kurazyan@qt.io>
-rw-r--r--src/bodymovin/trimpath_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bodymovin/trimpath_p.h b/src/bodymovin/trimpath_p.h
index 5aac2d0..79ab92e 100644
--- a/src/bodymovin/trimpath_p.h
+++ b/src/bodymovin/trimpath_p.h
@@ -83,7 +83,7 @@ private:
void appendElementRange(QPainterPath *to, int first, int last) const;
QPainterPath mPath;
- mutable QVector<qreal> mLens;
+ mutable QList<qreal> mLens;
};
QT_END_NAMESPACE