diff options
Diffstat (limited to 'src/location/maps/qgeotiledmapdata.cpp')
-rw-r--r-- | src/location/maps/qgeotiledmapdata.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/location/maps/qgeotiledmapdata.cpp b/src/location/maps/qgeotiledmapdata.cpp index 89eec6c4..4e9eec29 100644 --- a/src/location/maps/qgeotiledmapdata.cpp +++ b/src/location/maps/qgeotiledmapdata.cpp @@ -150,6 +150,12 @@ void QGeoTiledMapData::tileFetched(const QGeoTileSpec &spec) d->tileFetched(spec); } +void QGeoTiledMapData::tileError(const QGeoTileSpec &spec, const QString &errorString) +{ + Q_D(QGeoTiledMapData); + d->tileError(spec, errorString); +} + QGeoTileCache* QGeoTiledMapData::tileCache() { Q_D(QGeoTiledMapData); @@ -349,6 +355,11 @@ void QGeoTiledMapDataPrivate::tileFetched(const QGeoTileSpec &spec) map_->update(); } +void QGeoTiledMapDataPrivate::tileError(const QGeoTileSpec &spec, const QString &errorString) +{ + mapImages_->tileError(spec, errorString); +} + QSet<QGeoTileSpec> QGeoTiledMapDataPrivate::visibleTiles() { return visibleTiles_; |