diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-03-17 13:55:11 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-03-17 15:11:31 -0700 |
commit | b457965f50e7e0777a5b55e19d6fb0e848ee985d (patch) | |
tree | b85e4cc5704720005dc49b22866544d1389868aa | |
parent | 8bbc375fab7f2e34f1877126298209d7d1b04da0 (diff) | |
download | subsurface-b457965f50e7e0777a5b55e19d6fb0e848ee985d.tar.gz |
Core: remove variable name conflict
Having a parameter representing a location with the same name as a global
variable representing our locale is confusing.
Found via LGTM.com
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | core/qthelper.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/qthelper.cpp b/core/qthelper.cpp index d47a39fdf..89dd1befb 100644 --- a/core/qthelper.cpp +++ b/core/qthelper.cpp @@ -72,16 +72,16 @@ QString distance_string(int distanceInMeters) return str; } -extern "C" const char *printGPSCoords(const location_t *loc) +extern "C" const char *printGPSCoords(const location_t *location) { - int lat = loc->lat.udeg; - int lon = loc->lon.udeg; + int lat = location->lat.udeg; + int lon = location->lon.udeg; unsigned int latdeg, londeg; unsigned int latmin, lonmin; double latsec, lonsec; QString lath, lonh, result; - if (!has_location(loc)) + if (!has_location(location)) return strdup(""); if (prefs.coordinates_traditional) { |