summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@jollamobile.com>2013-09-02 10:11:26 +1000
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-04 06:16:49 +0200
commitd037cbc192af1c7f89ab027907ee0dbb5e18547f (patch)
treef832bfc0fe13fc7d9750566228c0f880802430e5
parent5611ad387a9ff1f6383773d6108f257a1338e921 (diff)
Fix comment in copy and pasted code.
Modify the comment to refer to the actual member variable that the comment is about. Change-Id: I8ecd9e0de4e0d977866c6d2a93295564ae5d290b Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
-rw-r--r--src/plugins/position/geoclue/qgeosatelliteinfosource_geocluemaster.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/position/geoclue/qgeosatelliteinfosource_geocluemaster.cpp b/src/plugins/position/geoclue/qgeosatelliteinfosource_geocluemaster.cpp
index 3a78b174..c6dd9bdb 100644
--- a/src/plugins/position/geoclue/qgeosatelliteinfosource_geocluemaster.cpp
+++ b/src/plugins/position/geoclue/qgeosatelliteinfosource_geocluemaster.cpp
@@ -243,8 +243,8 @@ bool QGeoSatelliteInfoSourceGeoclueMaster::configureSatelliteSource()
if (!createMasterClient(GEOCLUE_ACCURACY_LEVEL_DETAILED, GEOCLUE_RESOURCE_GPS))
return false;
- // createMasterClient() will call positionProviderChanged() slot on success, which sets m_pos
- // and possibly m_vel. Return true if m_pos is set.
+ // createMasterClient() will call positionProviderChanged() slot on success, which sets m_sat.
+ // Return true if m_sat is set.
return m_sat;
}