mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 05:34:47 +01:00
Demangle waypoint names
This commit is contained in:
parent
f55e5d639d
commit
421ab19e7a
@ -174,7 +174,8 @@ bool TwoNavParser::parse(QFile *file, QList<TrackData> &tracks,
|
|||||||
}
|
}
|
||||||
|
|
||||||
Waypoint w(gcs.toWGS84(c));
|
Waypoint w(gcs.toWGS84(c));
|
||||||
w.setName(list.at(1));
|
QString name(list.at(1));
|
||||||
|
w.setName(name.replace('_', ' ').trimmed());
|
||||||
|
|
||||||
if (list.size() > 6) {
|
if (list.size() > 6) {
|
||||||
QDateTime ts(timestamp(list.at(5), list.at(6)));
|
QDateTime ts(timestamp(list.at(5), list.at(6)));
|
||||||
|
Loading…
Reference in New Issue
Block a user