1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-23 07:14:22 +02:00

Properly handle points with extended style IDs

This commit is contained in:
2019-12-09 22:50:19 +01:00
parent ec0b0adba0
commit a986293f20
2 changed files with 2 additions and 2 deletions

View File

@ -966,7 +966,7 @@ const Style::Point &Style::point(quint32 type) const
{
static Point null;
QMap<quint16, Point>::const_iterator it = _points.find(type);
QMap<quint32, Point>::const_iterator it = _points.find(type);
return (it == _points.constEnd()) ? null : *it;
}