summaryrefslogtreecommitdiff
path: root/src/plugins/geoservices/osm/qgeotiledmappingmanagerengineosm.h
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-06-24 11:57:21 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-06-25 10:11:24 +0200
commitffee803f1099f85082a152791a7a3b261947a751 (patch)
tree307766f137312bad751a9c35bd3281d1772568ac /src/plugins/geoservices/osm/qgeotiledmappingmanagerengineosm.h
parent3794e0c252a8e7a0288d3fb74dde6f5fdc09950d (diff)
downloadqtlocation-ffee803f1099f85082a152791a7a3b261947a751.tar.gz
Use QList instead of QVector
Task-number: QTBUG-84469 Change-Id: Iefd2fb627602ef4744d80858eee72a089ef5f4ec Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/plugins/geoservices/osm/qgeotiledmappingmanagerengineosm.h')
-rw-r--r--src/plugins/geoservices/osm/qgeotiledmappingmanagerengineosm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/geoservices/osm/qgeotiledmappingmanagerengineosm.h b/src/plugins/geoservices/osm/qgeotiledmappingmanagerengineosm.h
index 12290c8f..adf4b161 100644
--- a/src/plugins/geoservices/osm/qgeotiledmappingmanagerengineosm.h
+++ b/src/plugins/geoservices/osm/qgeotiledmappingmanagerengineosm.h
@@ -45,7 +45,7 @@
#include <QtLocation/QGeoServiceProvider>
#include <QtLocation/private/qgeotiledmappingmanagerengine_p.h>
-#include <QVector>
+#include <QList>
QT_BEGIN_NAMESPACE
@@ -60,7 +60,7 @@ public:
~QGeoTiledMappingManagerEngineOsm();
QGeoMap *createMap() override;
- const QVector<QGeoTileProviderOsm *> &providers();
+ const QList<QGeoTileProviderOsm *> &providers();
QString customCopyright() const;
protected Q_SLOTS:
@@ -71,7 +71,7 @@ protected:
void updateMapTypes();
private:
- QVector<QGeoTileProviderOsm *> m_providers;
+ QList<QGeoTileProviderOsm *> m_providers;
QString m_customCopyright;
QString m_cacheDirectory;
QString m_offlineDirectory;