summaryrefslogtreecommitdiffstats
path: root/src/location/maps/qgeocodingmanagerengine.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/qgeocodingmanagerengine.cpp
parentd9a01fd2df5068c8722ba358fe05f08ba39ca83e (diff)
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/qgeocodingmanagerengine.cpp')
-rw-r--r--src/location/maps/qgeocodingmanagerengine.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/location/maps/qgeocodingmanagerengine.cpp b/src/location/maps/qgeocodingmanagerengine.cpp
index 2dc5f316..471f971b 100644
--- a/src/location/maps/qgeocodingmanagerengine.cpp
+++ b/src/location/maps/qgeocodingmanagerengine.cpp
@@ -174,7 +174,7 @@ int QGeocodingManagerEngine::managerVersion() const
QGeocodingManagerEngine::error(), QGeocodeReply::finished() or
QGeocodeReply::error() with deleteLater().
*/
-QGeocodeReply* QGeocodingManagerEngine::geocode(const QGeoAddress &address,
+QGeocodeReply *QGeocodingManagerEngine::geocode(const QGeoAddress &address,
const QGeoBoundingArea &bounds)
{
Q_UNUSED(address)
@@ -219,7 +219,7 @@ QGeocodeReply* QGeocodingManagerEngine::geocode(const QGeoAddress &address,
QGeocodingManagerEngine::error(), QGeocodeReply::finished() or
QGeocodeReply::error() with deleteLater().
*/
-QGeocodeReply* QGeocodingManagerEngine::reverseGeocode(const QGeoCoordinate &coordinate,
+QGeocodeReply *QGeocodingManagerEngine::reverseGeocode(const QGeoCoordinate &coordinate,
const QGeoBoundingArea &bounds)
{
Q_UNUSED(coordinate)
@@ -257,7 +257,7 @@ QGeocodeReply* QGeocodingManagerEngine::reverseGeocode(const QGeoCoordinate &coo
QGeocodingManagerEngine::error(), QGeocodeReply::finished() or
QGeocodeReply::error() with deleteLater().
*/
-QGeocodeReply* QGeocodingManagerEngine::geocode(const QString &address,
+QGeocodeReply *QGeocodingManagerEngine::geocode(const QString &address,
int limit,
int offset,
const QGeoBoundingArea &bounds)
@@ -294,7 +294,7 @@ QLocale QGeocodingManagerEngine::locale() const
}
/*!
-\fn void QGeocodingManagerEngine::finished(QGeocodeReply* reply)
+\fn void QGeocodingManagerEngine::finished(QGeocodeReply *reply)
This signal is emitted when \a reply has finished processing.
@@ -309,7 +309,7 @@ QLocale QGeocodingManagerEngine::locale() const
*/
/*!
-\fn void QGeocodingManagerEngine::error(QGeocodeReply* reply, QGeocodeReply::Error error, QString errorString)
+\fn void QGeocodingManagerEngine::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 QGeocodingManagerEngine::finished() signal will probably follow.