1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-23 19:25:54 +01:00

Fixed debug builds

This commit is contained in:
Martin Tůma 2024-11-21 10:59:32 +01:00
parent 496065b549
commit 890985bacd

View File

@ -796,7 +796,7 @@ QDebug operator<<(QDebug dbg, const Mapsforge::MapData::Tag &tag)
QDebug operator<<(QDebug dbg, const MapData::Path &path)
{
dbg.nospace() << "Path(" << path.poly.boundingRect() << ", "
<< path.tags << ")";
<< path.point.tags << ")";
return dbg.space();
}