1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 06:43:22 +02:00

Removed forgotten debug stuff

This commit is contained in:
Martin Tůma 2024-06-12 08:49:39 +02:00
parent d3a3734e71
commit 5e29c12881

View File

@ -265,7 +265,6 @@ void RasterTile::processPoints(QList<MapData::Point> &points,
{ {
PointSet lightsSet, signalsSet; PointSet lightsSet, signalsSet;
int i; int i;
QSet<uint> set;
std::sort(points.begin(), points.end()); std::sort(points.begin(), points.end());
@ -295,10 +294,8 @@ void RasterTile::processPoints(QList<MapData::Point> &points,
? &style.haloColor() : 0; ? &style.haloColor() : 0;
double rotate = angle(point.type(), point.param()); double rotate = angle(point.type(), point.param());
if ((!label || !fnt) && !img) { if ((!label || !fnt) && !img)
set.insert(point.type());
continue; continue;
}
QPoint offset = img ? style.offset() : QPoint(0, 0); QPoint offset = img ? style.offset() : QPoint(0, 0);
@ -315,9 +312,6 @@ void RasterTile::processPoints(QList<MapData::Point> &points,
} else } else
delete item; delete item;
} }
for (auto i = set.cbegin(), end = set.cend(); i != end; ++i)
qDebug() << (*i>>16) << (*i & 0xFFFF);
} }
void RasterTile::processLines(const QList<MapData::Line> &lines, void RasterTile::processLines(const QList<MapData::Line> &lines,