From 890985bacd71cfeeba8fdc74858d56ee59897dab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Thu, 21 Nov 2024 10:59:32 +0100 Subject: [PATCH] Fixed debug builds --- src/map/mapsforge/mapdata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/mapsforge/mapdata.cpp b/src/map/mapsforge/mapdata.cpp index 1ab5dd52..b365d4a9 100644 --- a/src/map/mapsforge/mapdata.cpp +++ b/src/map/mapsforge/mapdata.cpp @@ -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(); }