summaryrefslogtreecommitdiff
path: root/src/location/maps/qgeomappingmanagerengine.cpp
diff options
context:
space:
mode:
authorDavid Laing <david.laing@nokia.com>2012-01-05 16:21:45 +1000
committerQt by Nokia <qt-info@nokia.com>2012-01-09 20:55:07 +0100
commit9a5bcb41a44cd9108690606b79396e424cba983d (patch)
treef90e0f66c7812de24e8cc1f2b3a03b52bc13056d /src/location/maps/qgeomappingmanagerengine.cpp
parentf75c61a5eed56327fce5a1d798085bc950178089 (diff)
downloadqtlocation-9a5bcb41a44cd9108690606b79396e424cba983d.tar.gz
Adding private API warnings for the Maps API.
Also renamed some of the files to follow the naming conventions for private header files. Change-Id: I84a6bc0956b942861dfb63169cb4cdcc2033f2df Reviewed-by: Alex Wilson <alex.wilson@nokia.com>
Diffstat (limited to 'src/location/maps/qgeomappingmanagerengine.cpp')
-rw-r--r--src/location/maps/qgeomappingmanagerengine.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/location/maps/qgeomappingmanagerengine.cpp b/src/location/maps/qgeomappingmanagerengine.cpp
index f7fff762..b3bc7caa 100644
--- a/src/location/maps/qgeomappingmanagerengine.cpp
+++ b/src/location/maps/qgeomappingmanagerengine.cpp
@@ -564,13 +564,13 @@ QLocale QGeoMappingManagerEngine::locale() const
return d_ptr->locale;
}
-QGeoTileCache::CacheAreas QGeoMappingManagerEngine::cacheHint() const
+QGeoMappingManager::CacheAreas QGeoMappingManagerEngine::cacheHint() const
{
Q_D(const QGeoMappingManagerEngine);
return d->cacheHint;
}
-void QGeoMappingManagerEngine::setCacheHint(QGeoTileCache::CacheAreas cacheHint)
+void QGeoMappingManagerEngine::setCacheHint(QGeoMappingManager::CacheAreas cacheHint)
{
Q_D(QGeoMappingManagerEngine);
d->cacheHint = cacheHint;
@@ -587,7 +587,7 @@ QGeoMappingManagerEnginePrivate::QGeoMappingManagerEnginePrivate()
supportsTilting(false),
minimumTilt(0.0),
maximumTilt(0.0),
- cacheHint(QGeoTileCache::AllCaches),
+ cacheHint(QGeoMappingManager::AllCaches),
started_(false),
stopped_(false) {}