mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
Removed forgotten debug stuff
This commit is contained in:
parent
d3a3734e71
commit
5e29c12881
@ -265,7 +265,6 @@ void RasterTile::processPoints(QList<MapData::Point> &points,
|
||||
{
|
||||
PointSet lightsSet, signalsSet;
|
||||
int i;
|
||||
QSet<uint> set;
|
||||
|
||||
std::sort(points.begin(), points.end());
|
||||
|
||||
@ -295,10 +294,8 @@ void RasterTile::processPoints(QList<MapData::Point> &points,
|
||||
? &style.haloColor() : 0;
|
||||
double rotate = angle(point.type(), point.param());
|
||||
|
||||
if ((!label || !fnt) && !img) {
|
||||
set.insert(point.type());
|
||||
if ((!label || !fnt) && !img)
|
||||
continue;
|
||||
}
|
||||
|
||||
QPoint offset = img ? style.offset() : QPoint(0, 0);
|
||||
|
||||
@ -315,9 +312,6 @@ void RasterTile::processPoints(QList<MapData::Point> &points,
|
||||
} else
|
||||
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,
|
||||
|
Loading…
Reference in New Issue
Block a user