summaryrefslogtreecommitdiff
path: root/src/plugins/geoservices/mapbox
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@theqtcompany.com>2015-04-13 14:15:20 +0200
committerMichal Klocek <michal.klocek@theqtcompany.com>2015-05-04 10:53:28 +0000
commite77eaa52d681bbc0591b3f294b40a0ccfeeac5e3 (patch)
treeef463c9417d6c4195ac377a4bf376ccf28983488 /src/plugins/geoservices/mapbox
parent72ecba08268ae8c080b411cfc5117ddcf9b6d0fe (diff)
downloadqtlocation-e77eaa52d681bbc0591b3f294b40a0ccfeeac5e3.tar.gz
Set shorter name for class names with 'MapData'
Rename all references and files with 'MapData' to use shorter name 'Map'. Change-Id: I8ab790146ee28e540e6866ba0218eea61bae6e64 Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'src/plugins/geoservices/mapbox')
-rw-r--r--src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.cpp6
-rw-r--r--src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.cpp b/src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.cpp
index fd647159..4be5ac24 100644
--- a/src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.cpp
+++ b/src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.cpp
@@ -39,7 +39,7 @@
#include <QtLocation/private/qgeocameracapabilities_p.h>
#include <QtLocation/private/qgeomaptype_p.h>
-#include <QtLocation/private/qgeotiledmapdata_p.h>
+#include <QtLocation/private/qgeotiledmap_p.h>
QT_BEGIN_NAMESPACE
@@ -85,9 +85,9 @@ QGeoTiledMappingManagerEngineMapbox::~QGeoTiledMappingManagerEngineMapbox()
{
}
-QGeoMap *QGeoTiledMappingManagerEngineMapbox::createMapData()
+QGeoMap *QGeoTiledMappingManagerEngineMapbox::createMap()
{
- return new QGeoTiledMapData(this, 0);
+ return new QGeoTiledMap(this, 0);
}
QT_END_NAMESPACE
diff --git a/src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.h b/src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.h
index 39876457..379ca6b8 100644
--- a/src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.h
+++ b/src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.h
@@ -52,7 +52,7 @@ public:
QGeoServiceProvider::Error *error, QString *errorString);
~QGeoTiledMappingManagerEngineMapbox();
- QGeoMap *createMapData();
+ QGeoMap *createMap();
};
QT_END_NAMESPACE