1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-04-21 04:39:10 +02:00

Compare commits

..

No commits in common. "7febd2971e57094ecf7194c8044f174570d2d272" and "b7415ca2c90a540667f46d76ee02ca99059fb786" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View File

@ -83,7 +83,7 @@ static void setWaypointProperties(Waypoint &waypoint,
QColor color(0x7e, 0x7e, 0x7e);
int size = MARKER_SIZE_MEDIUM;
if (properties.isObject()) {
if (!properties.isObject()) {
QJsonObject o(properties.toObject());
if (o["name"].isString())

View File

@ -488,8 +488,6 @@ void KMLParser::track(SegmentData &segment)
if (_reader.name() == QLatin1String("when")) {
segment.append(Trackpoint());
segment.last().setTimestamp(time());
if (_reader.error())
return;
} else if (_reader.name() == QLatin1String("coord")) {
if (i == segment.size()) {
_reader.raiseError(error);