1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-31 09:05:14 +01:00

Fixed typo

This commit is contained in:
Martin Tůma 2023-01-16 21:16:20 +01:00
parent 05657ccdce
commit 3af98b6785

View File

@ -253,7 +253,7 @@ MapData::Point::Point(uint type, const Coordinates &c, const QString &label,
_param = QVariant(params.at(0).toDouble()); _param = QVariant(params.at(0).toDouble());
} else if (type>>16 == I_SISTAT || type>>16 == SISTAT) { } else if (type>>16 == I_SISTAT || type>>16 == SISTAT) {
if (_label.isEmpty()) if (_label.isEmpty())
_label = sistat(type && 0xFF); _label = sistat(type & 0xFF);
_type = TYPE(SISTAT); _type = TYPE(SISTAT);
} }
} }