summaryrefslogtreecommitdiff
path: root/src/location/maps/qgeoserviceprovider.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/qgeoserviceprovider.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/qgeoserviceprovider.cpp')
-rw-r--r--src/location/maps/qgeoserviceprovider.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/location/maps/qgeoserviceprovider.cpp b/src/location/maps/qgeoserviceprovider.cpp
index c38f4ff3..8c1b5815 100644
--- a/src/location/maps/qgeoserviceprovider.cpp
+++ b/src/location/maps/qgeoserviceprovider.cpp
@@ -311,7 +311,7 @@ Manager *QGeoServiceProviderPrivate::manager(QGeoServiceProvider::Error *_error,
report any errors which occurred during the construction of the
QGeocodingManager.
*/
-QGeocodingManager* QGeoServiceProvider::geocodingManager() const
+QGeocodingManager *QGeoServiceProvider::geocodingManager() const
{
return d_ptr->manager<QGeocodingManager, QGeocodingManagerEngine>(
&(d_ptr->geocodeError), &(d_ptr->geocodeErrorString),
@@ -338,7 +338,7 @@ QGeocodingManager* QGeoServiceProvider::geocodingManager() const
report any errors which occurred during the construction of the
QGeoMappingManager.
*/
-QGeoMappingManager* QGeoServiceProvider::mappingManager() const
+QGeoMappingManager *QGeoServiceProvider::mappingManager() const
{
return d_ptr->manager<QGeoMappingManager, QGeoMappingManagerEngine>(
&(d_ptr->mappingError), &(d_ptr->mappingErrorString),
@@ -365,7 +365,7 @@ QGeoMappingManager* QGeoServiceProvider::mappingManager() const
report any errors which occurred during the construction of the
QGeoRoutingManager.
*/
-QGeoRoutingManager* QGeoServiceProvider::routingManager() const
+QGeoRoutingManager *QGeoServiceProvider::routingManager() const
{
return d_ptr->manager<QGeoRoutingManager, QGeoRoutingManagerEngine>(
&(d_ptr->routingError), &(d_ptr->routingErrorString),
@@ -583,7 +583,7 @@ void QGeoServiceProviderPrivate::loadPlugin(const QMap<QString, QVariant> &param
int idx = int(metaData.value(QStringLiteral("index")).toDouble());
// load the actual plugin
- factory = qobject_cast<QGeoServiceProviderFactory*>(loader()->instance(idx));
+ factory = qobject_cast<QGeoServiceProviderFactory *>(loader()->instance(idx));
}
QHash<QString, QJsonObject> QGeoServiceProviderPrivate::plugins(bool reload)