From 9fa3cf15c8500fba5bbb861f1925160815ae2afd Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Mon, 22 Jun 2020 11:44:14 +0200 Subject: Use QList instead of QVector in gui Applied to headers only. Source file to be changed separately. Task-number: QTBUG-84469 Change-Id: Ic08a899321eaffc46b8461aaee3dbaa4d2c727a9 Reviewed-by: Laszlo Agocs --- src/gui/painting/qpainterpath.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/gui/painting/qpainterpath.h') diff --git a/src/gui/painting/qpainterpath.h b/src/gui/painting/qpainterpath.h index b72a5d3298..c6bb68e35a 100644 --- a/src/gui/painting/qpainterpath.h +++ b/src/gui/painting/qpainterpath.h @@ -43,9 +43,9 @@ #include #include #include -#include #include -#include +#include +#include #include QT_BEGIN_NAMESPACE @@ -256,8 +256,8 @@ public: qreal curveThreshold() const; void setDashPattern(Qt::PenStyle); - void setDashPattern(const QVector &dashPattern); - QVector dashPattern() const; + void setDashPattern(const QList &dashPattern); + QList dashPattern() const; void setDashOffset(qreal offset); qreal dashOffset() const; -- cgit v1.2.3