From ffee803f1099f85082a152791a7a3b261947a751 Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Wed, 24 Jun 2020 11:57:21 +0200 Subject: Use QList instead of QVector Task-number: QTBUG-84469 Change-Id: Iefd2fb627602ef4744d80858eee72a089ef5f4ec Reviewed-by: Lars Knoll --- src/plugins/geoservices/mapbox/qgeotilefetchermapbox.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/plugins/geoservices/mapbox/qgeotilefetchermapbox.h') diff --git a/src/plugins/geoservices/mapbox/qgeotilefetchermapbox.h b/src/plugins/geoservices/mapbox/qgeotilefetchermapbox.h index 47f3a8aa..6a653354 100644 --- a/src/plugins/geoservices/mapbox/qgeotilefetchermapbox.h +++ b/src/plugins/geoservices/mapbox/qgeotilefetchermapbox.h @@ -37,7 +37,7 @@ #ifndef QGEOTILEFETCHERMAPBOX_H #define QGEOTILEFETCHERMAPBOX_H -#include +#include #include QT_BEGIN_NAMESPACE @@ -53,7 +53,7 @@ public: QGeoTileFetcherMapbox(int scaleFactor, QGeoTiledMappingManagerEngine *parent); void setUserAgent(const QByteArray &userAgent); - void setMapIds(const QVector &mapIds); + void setMapIds(const QList &mapIds); void setFormat(const QString &format); void setAccessToken(const QString &accessToken); @@ -65,7 +65,7 @@ private: QString m_format; QString m_replyFormat; QString m_accessToken; - QVector m_mapIds; + QList m_mapIds; int m_scaleFactor; }; -- cgit v1.2.1