summaryrefslogtreecommitdiff
path: root/src/location/maps/qgeotilefetcher.cpp
diff options
context:
space:
mode:
authorAlex Wilson <alex.wilson@nokia.com>2012-05-14 18:37:19 +1000
committerQt by Nokia <qt-info@nokia.com>2012-05-15 07:39:12 +0200
commit285a52a7a02cdf18b95df56cd579c7910ec84949 (patch)
tree6cbf8eaf497f033a959b290e4378d10a6d7de591 /src/location/maps/qgeotilefetcher.cpp
parent42ca2853c8c91a29899d5cb24c2e854f6c366a55 (diff)
downloadqtlocation-285a52a7a02cdf18b95df56cd579c7910ec84949.tar.gz
Coding style fixes: whitespace crusades
* Single spaces after keywords and before a bracket/brace * Binary operator spacing * Curlies at open of class/function body * Spacing around some type specifiers/declarations Change-Id: Ie516283e7a39c7ce83071ea8125774c76db611f5 Reviewed-by: Aaron McCarthy <aaron.mccarthy@nokia.com>
Diffstat (limited to 'src/location/maps/qgeotilefetcher.cpp')
-rw-r--r--src/location/maps/qgeotilefetcher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/location/maps/qgeotilefetcher.cpp b/src/location/maps/qgeotilefetcher.cpp
index 5f9fc479..8b83b881 100644
--- a/src/location/maps/qgeotilefetcher.cpp
+++ b/src/location/maps/qgeotilefetcher.cpp
@@ -126,7 +126,7 @@ void QGeoTileFetcher::cancelTileRequests(const QSet<QGeoTileSpec> &tiles)
tile_iter tile = tiles.constBegin();
tile_iter end = tiles.constEnd();
for (; tile != end; ++tile) {
- QGeoTiledMapReply* reply = d->invmap_.value(*tile, 0);
+ QGeoTiledMapReply *reply = d->invmap_.value(*tile, 0);
if (reply) {
d->invmap_.remove(*tile);
reply->abort();