mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-21 11:54:15 +01:00
LP-10 Fix unused parameter warnings
This commit is contained in:
parent
162dde2677
commit
1861ede9d7
@ -486,6 +486,8 @@ QString UrlFactory::MakeReverseGeocoderUrl(internals::PointLatLng &pt, const QSt
|
|||||||
{
|
{
|
||||||
#ifdef DEBUG_URLFACTORY
|
#ifdef DEBUG_URLFACTORY
|
||||||
qDebug() << "Language: " << language;
|
qDebug() << "Language: " << language;
|
||||||
|
#else
|
||||||
|
(void)language;
|
||||||
#endif
|
#endif
|
||||||
// CSV output has been depreciated. API key is no longer needed.
|
// CSV output has been depreciated. API key is no longer needed.
|
||||||
return QString("http://maps.googleapis.com/maps/api/geocode/xml?latlng=%1,%2").arg(QString::number(pt.Lat())).arg(QString::number(pt.Lng()));
|
return QString("http://maps.googleapis.com/maps/api/geocode/xml?latlng=%1,%2").arg(QString::number(pt.Lat())).arg(QString::number(pt.Lng()));
|
||||||
|
@ -98,7 +98,7 @@ bool VehicleConfigurationHelper::setupHardwareSettings(bool save)
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool VehicleConfigurationHelper::isApplicable(UAVObject *dataObj)
|
bool VehicleConfigurationHelper::isApplicable(UAVObject * /* dataObj */)
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user