Commit f9d6f809 authored by Don Gagne's avatar Don Gagne

Couldn't figure out how to get -Wno-#warning into project file

Not sure what qmake # escape is. So fixed the problem instead.
parent 0409a723
......@@ -267,15 +267,12 @@ void QGCMapWidget::loadSettings(bool changePosition)
if (trailType == mapcontrol::UAVTrailType::ByDistance)
{
// XXX
#ifdef Q_OS_WIN
#pragma message ("WARNING: Settings loading for trail type not implemented")
#else
#warning Settings loading for trail type not implemented
#endif
qDebug() << "WARNING: Settings loading for trail type (ByDistance) not implemented";
}
else if (trailType == mapcontrol::UAVTrailType::ByTimeElapsed)
{
// XXX
qDebug() << "WARNING: Settings loading for trail type (ByTimeElapsed) not implemented";
}
// SET TRAIL TYPE
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment