diff options
author | Paolo Angelelli <paolo.angelelli@theqtcompany.com> | 2016-07-01 15:00:03 +0200 |
---|---|---|
committer | Paolo Angelelli <paolo.angelelli@theqtcompany.com> | 2016-07-07 13:09:43 +0000 |
commit | fd7ad01376b511ef1065ff832a7e41f15f6175b3 (patch) | |
tree | c04e0c7a03a3fb73cc875638faa0657d8d3c9cc7 /src/location/maps/qabstractgeotilecache_p.h | |
parent | eaf416e17fecee09c0b3f8d93b784fc3cf5806d2 (diff) | |
download | qtlocation-fd7ad01376b511ef1065ff832a7e41f15f6175b3.tar.gz |
Fix for caching after mapbox improvement/highdpi-support
Currently the qgeofiletilecache/qgeofiletilecachemapbox contains a bug
in that it makes use of virtual functions in the constructor.
This patch fixes it by moving those calls into a virtual init()
method that is called by QGeoTiledMappingManagerEngine::setTileCache()
Change-Id: Icf7932dfbae7d99eef22c67e034246a834212a03
Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'src/location/maps/qabstractgeotilecache_p.h')
-rw-r--r-- | src/location/maps/qabstractgeotilecache_p.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/location/maps/qabstractgeotilecache_p.h b/src/location/maps/qabstractgeotilecache_p.h index 141aa9b4..bf1e56b9 100644 --- a/src/location/maps/qabstractgeotilecache_p.h +++ b/src/location/maps/qabstractgeotilecache_p.h @@ -116,8 +116,10 @@ public: protected: QAbstractGeoTileCache(QObject *parent = 0); - + virtual void init() = 0; virtual void printStats() = 0; + + friend class QGeoTiledMappingManagerEngine; }; QT_END_NAMESPACE |