summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Angelelli <paolo.angelelli@qt.io>2017-04-13 19:12:15 +0200
committerPaolo Angelelli <paolo.angelelli@qt.io>2017-04-28 09:13:45 +0000
commit716d9bf3d9af908fb9708b42ab79da51d5da309b (patch)
tree930cb618abfac7cd11038783e93b738c000c53f4
parentf3a004e55a4731dde881c7a8e47f0720275b9185 (diff)
downloadqtlocation-716d9bf3d9af908fb9708b42ab79da51d5da309b.tar.gz
Make QGeoTileFetcher::handleReply virtual
Tile fetchers may need to override this one to better analyze the reply content and possibly validate it. Change-Id: Ia3445017ad7b44d719a1ce28b811d9145373e397 Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
-rw-r--r--src/location/maps/qgeotilefetcher_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/location/maps/qgeotilefetcher_p.h b/src/location/maps/qgeotilefetcher_p.h
index 23adac77..d052a8a8 100644
--- a/src/location/maps/qgeotilefetcher_p.h
+++ b/src/location/maps/qgeotilefetcher_p.h
@@ -93,7 +93,7 @@ protected:
private:
virtual QGeoTiledMapReply *getTileImage(const QGeoTileSpec &spec) = 0;
- void handleReply(QGeoTiledMapReply *reply, const QGeoTileSpec &spec);
+ virtual void handleReply(QGeoTiledMapReply *reply, const QGeoTileSpec &spec);
Q_DISABLE_COPY(QGeoTileFetcher)
friend class QGeoTiledMappingManagerEngine;