core: fix incorrect QString::asprintf/vasprintf usage

These are static functions, they cannot be used as a method on an object to
construct that object.

commit aa5f2e7c73 ("cleanup: replace deprecated sprintf()/vsprintf() calls")
introduced this bug in an ill-advised attempt to deal with a deprecation
warning.

This caused us to not print GPS coordinates in the UI.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2020-11-17 08:24:07 -08:00
parent 71389cfa92
commit d6d3c9a02f
3 changed files with 4 additions and 3 deletions

View file

@ -107,11 +107,11 @@ QString printGPSCoords(const location_t *location)
lonmin = (lon % 1000000U) * 60U;
latsec = (latmin % 1000000) * 60;
lonsec = (lonmin % 1000000) * 60;
result.asprintf("%u°%02d\'%06.3f\"%s %u°%02d\'%06.3f\"%s",
result = QString::asprintf("%u°%02d\'%06.3f\"%s %u°%02d\'%06.3f\"%s",
latdeg, latmin / 1000000, latsec / 1000000, qPrintable(lath),
londeg, lonmin / 1000000, lonsec / 1000000, qPrintable(lonh));
} else {
result.asprintf("%f %f", (double) lat / 1000000.0, (double) lon / 1000000.0);
result = QString::asprintf("%f %f", (double) lat / 1000000.0, (double) lon / 1000000.0);
}
return result;
}