summaryrefslogtreecommitdiffstats
path: root/src/location/maps/qgeotiledmap.cpp
diff options
context:
space:
mode:
authorPaolo Angelelli <paolo.angelelli@theqtcompany.com>2016-02-04 20:18:46 +0100
committerPaolo Angelelli <paolo.angelelli@theqtcompany.com>2016-03-03 15:23:14 +0000
commitd21ed648f2958efaab9a041b2cd2607f4676be59 (patch)
treef0118c38f7f2d2c9ad628aa19a32e1f88b788796 /src/location/maps/qgeotiledmap.cpp
parent7af45b0a519e1000732bb1e5eb7cb2afd997646e (diff)
QGeoMapScene renamed to QGeoTiledMapScenev5.7.0-alpha1
Since the class QGeoMapScene is tightly coupled to QGeoTiledMap, this patch renames it into QGeoTiledMapScene/QGeoTiledMapScenePrivate, to clarify the structure of the module and avoid confusion, as otherwise it would not be clear that this class is exclusively used by QGeoTiledMap. Change-Id: Ifd76b02ff14d0f0690dc37fcb0a93b0e0702d05d Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'src/location/maps/qgeotiledmap.cpp')
-rw-r--r--src/location/maps/qgeotiledmap.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/location/maps/qgeotiledmap.cpp b/src/location/maps/qgeotiledmap.cpp
index 6e9930f4..3705bfca 100644
--- a/src/location/maps/qgeotiledmap.cpp
+++ b/src/location/maps/qgeotiledmap.cpp
@@ -42,7 +42,7 @@
#include "qgeocameratiles_p.h"
#include "qgeotilerequestmanager_p.h"
-#include "qgeomapscene_p.h"
+#include "qgeotiledmapscene_p.h"
#include "qgeocameracapabilities_p.h"
#include <cmath>
@@ -180,7 +180,7 @@ QGeoTiledMapPrivate::QGeoTiledMapPrivate(QGeoTiledMappingManagerEngine *engine)
m_cache(engine->tileCache()),
m_visibleTiles(new QGeoCameraTiles()),
m_prefetchTiles(new QGeoCameraTiles()),
- m_mapScene(new QGeoMapScene()),
+ m_mapScene(new QGeoTiledMapScene()),
m_tileRequests(0),
m_maxZoomLevel(static_cast<int>(std::ceil(engine->cameraCapabilities().maximumZoomLevel()))),
m_minZoomLevel(static_cast<int>(std::ceil(engine->cameraCapabilities().minimumZoomLevel()))),