summaryrefslogtreecommitdiff
path: root/src/location/maps/qgeocodingmanager.cpp
diff options
context:
space:
mode:
authorAlex Wilson <alex.wilson@nokia.com>2012-05-15 15:38:49 +1000
committerQt by Nokia <qt-info@nokia.com>2012-05-15 08:50:10 +0200
commitbc49b871f1c5c69ccefb18f87db1f3f94a995a56 (patch)
tree778d018a5729a4c672cb1cfe08cd807b3c4d27ee /src/location/maps/qgeocodingmanager.cpp
parentd9a01fd2df5068c8722ba358fe05f08ba39ca83e (diff)
downloadqtlocation-bc49b871f1c5c69ccefb18f87db1f3f94a995a56.tar.gz
Coding style fixes: whitespace around pointers/references
Change-Id: Ie527591e2d9a1578137136fb6664e86c43eed1bf Reviewed-by: Thomas Lowe <thomas.lowe@nokia.com> Reviewed-by: Alex Wilson <alex.wilson@nokia.com>
Diffstat (limited to 'src/location/maps/qgeocodingmanager.cpp')
-rw-r--r--src/location/maps/qgeocodingmanager.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/location/maps/qgeocodingmanager.cpp b/src/location/maps/qgeocodingmanager.cpp
index 8f68db72..a9917dc2 100644
--- a/src/location/maps/qgeocodingmanager.cpp
+++ b/src/location/maps/qgeocodingmanager.cpp
@@ -173,7 +173,7 @@ int QGeocodingManager::managerVersion() const
QGeocodingManager::error(), QGeocodeReply::finished() or
QGeocodeReply::error() with deleteLater().
*/
-QGeocodeReply* QGeocodingManager::geocode(const QGeoAddress &address, const QGeoBoundingArea &bounds)
+QGeocodeReply *QGeocodingManager::geocode(const QGeoAddress &address, const QGeoBoundingArea &bounds)
{
// if (!d_ptr->engine)
// return new QGeocodeReply(QGeocodeReply::EngineNotSetError, "The geocoding manager was not created with a valid engine.", this);
@@ -218,7 +218,7 @@ QGeocodeReply* QGeocodingManager::geocode(const QGeoAddress &address, const QGeo
QGeocodingManager::error(), QGeocodeReply::finished() or
QGeocodeReply::error() with deleteLater().
*/
-QGeocodeReply* QGeocodingManager::reverseGeocode(const QGeoCoordinate &coordinate, const QGeoBoundingArea &bounds)
+QGeocodeReply *QGeocodingManager::reverseGeocode(const QGeoCoordinate &coordinate, const QGeoBoundingArea &bounds)
{
// if (!d_ptr->engine)
// return new QGeocodeReply(QGeocodeReply::EngineNotSetError, "The geocoding manager was not created with a valid engine.", this);
@@ -255,7 +255,7 @@ QGeocodeReply* QGeocodingManager::reverseGeocode(const QGeoCoordinate &coordinat
QGeocodingManager::error(), QGeocodeReply::finished() or
QGeocodeReply::error() with deleteLater().
*/
-QGeocodeReply* QGeocodingManager::geocode(const QString &address,
+QGeocodeReply *QGeocodingManager::geocode(const QString &address,
int limit,
int offset,
const QGeoBoundingArea &bounds)
@@ -293,7 +293,7 @@ QLocale QGeocodingManager::locale() const
}
/*!
-\fn void QGeocodingManager::finished(QGeocodeReply* reply)
+\fn void QGeocodingManager::finished(QGeocodeReply *reply)
This signal is emitted when \a reply has finished processing.
@@ -308,7 +308,7 @@ QLocale QGeocodingManager::locale() const
*/
/*!
-\fn void QGeocodingManager::error(QGeocodeReply* reply, QGeocodeReply::Error error, QString errorString)
+\fn void QGeocodingManager::error(QGeocodeReply *reply, QGeocodeReply::Error error, QString errorString)
This signal is emitted when an error has been detected in the processing of
\a reply. The QGeocodingManager::finished() signal will probably follow.