diff options
author | Aaron McCarthy <aaron.mccarthy@nokia.com> | 2012-05-29 08:30:21 +1000 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-06-04 02:01:48 +0200 |
commit | 81ee36a1a88c0430ce54318b8ef82987158038f7 (patch) | |
tree | 40e8d51f556bcad6902fd08aa97e894fc70123f5 /src/location | |
parent | 9ec390a60bfd9da1601a1fbb74dacc70e895ef89 (diff) | |
download | qtlocation-81ee36a1a88c0430ce54318b8ef82987158038f7.tar.gz |
Fix errors reported by coverity.
Uninitialised member variables.
Hidden memeber function. The QQuickItem::contains() viritual function
was was added recently. QDeclarativeGeoMapItemBase already had a
similar function with a slightly different signature. Remove the
QDeclarativeGeoMapItemBase function and changed the signature of the
other map item classes to override the QQuickItem one.
Change-Id: I70853184ca78465742231d1aa9c941e3088cc0f6
Reviewed-by: Alex Wilson <alex.wilson@nokia.com>
Diffstat (limited to 'src/location')
-rw-r--r-- | src/location/maps/qgeotilerequestmanager.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/location/maps/qgeotilerequestmanager.cpp b/src/location/maps/qgeotilerequestmanager.cpp index 431a3c26..bcce4a22 100644 --- a/src/location/maps/qgeotilerequestmanager.cpp +++ b/src/location/maps/qgeotilerequestmanager.cpp @@ -58,7 +58,6 @@ public: ~QGeoTileRequestManagerPrivate(); QGeoTiledMapData *map_; - QGeoTileCache *cache_; QList<QSharedPointer<QGeoTileTexture> > requestTiles(const QSet<QGeoTileSpec> &tiles); void tileError(const QGeoTileSpec &tile, const QString &errorString); |