diff options
author | David Laing <david.laing@nokia.com> | 2012-01-04 11:52:21 +1000 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-01-05 07:05:08 +0100 |
commit | 7c2dc2cb57e426bbf8a37cfba988df7a964c5e94 (patch) | |
tree | d484b9167194881918174698d40d8d13af2313ae /src/location/maps/qgeotiledmapreply_p.h | |
parent | c9de94f6e4013744e03f93ece7fa960cf500eb12 (diff) | |
download | qtlocation-7c2dc2cb57e426bbf8a37cfba988df7a964c5e94.tar.gz |
Renames the new mapping classes.
Also moves them into src/location/maps.
We still need to take a closer look at which classes are
public and which are private, and then do the associated
file renaming and addition of private header warnings.
Change-Id: Ide0225ad5d5dc23834baaa9f6841646e4c92de39
Reviewed-by: Juha Vuolle <juha.vuolle@nokia.com>
Diffstat (limited to 'src/location/maps/qgeotiledmapreply_p.h')
-rw-r--r-- | src/location/maps/qgeotiledmapreply_p.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/location/maps/qgeotiledmapreply_p.h b/src/location/maps/qgeotiledmapreply_p.h index cf0043cb..5ac1fccc 100644 --- a/src/location/maps/qgeotiledmapreply_p.h +++ b/src/location/maps/qgeotiledmapreply_p.h @@ -54,14 +54,14 @@ // #include "qgeotiledmapreply.h" -#include "tilespec.h" +#include "qgeotilespec.h" QT_BEGIN_NAMESPACE class QGeoTiledMapReplyPrivate { public: - QGeoTiledMapReplyPrivate(const TileSpec &spec); + QGeoTiledMapReplyPrivate(const QGeoTileSpec &spec); QGeoTiledMapReplyPrivate(QGeoTiledMapReply::Error error, const QString& errorString); ~QGeoTiledMapReplyPrivate(); @@ -70,7 +70,7 @@ public: bool isFinished; bool isCached; - TileSpec spec; + QGeoTileSpec spec; QByteArray mapImageData; QString mapImageFormat; }; |