mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 05:34:47 +01:00
Fixed some clazy warnings
This commit is contained in:
parent
efca589f01
commit
0e404e993e
@ -77,7 +77,7 @@ void CadenceGraph::clear()
|
||||
{
|
||||
_avg.clear();
|
||||
|
||||
GraphView::clear();
|
||||
GraphTab::clear();
|
||||
}
|
||||
|
||||
void CadenceGraph::showTracks(bool show)
|
||||
|
@ -120,7 +120,7 @@ void ElevationGraph::clear()
|
||||
_routeMin = NAN;
|
||||
_routeMax = NAN;
|
||||
|
||||
GraphView::clear();
|
||||
GraphTab::clear();
|
||||
}
|
||||
|
||||
void ElevationGraph::setYUnits(Units units)
|
||||
|
@ -86,7 +86,7 @@ void GearRatioGraph::clear()
|
||||
{
|
||||
_map.clear();
|
||||
|
||||
GraphView::clear();
|
||||
GraphTab::clear();
|
||||
}
|
||||
|
||||
void GearRatioGraph::showTracks(bool show)
|
||||
|
@ -77,7 +77,7 @@ void HeartRateGraph::clear()
|
||||
{
|
||||
_avg.clear();
|
||||
|
||||
GraphView::clear();
|
||||
GraphTab::clear();
|
||||
}
|
||||
|
||||
void HeartRateGraph::showTracks(bool show)
|
||||
|
@ -77,7 +77,7 @@ void PowerGraph::clear()
|
||||
{
|
||||
_avg.clear();
|
||||
|
||||
GraphView::clear();
|
||||
GraphTab::clear();
|
||||
}
|
||||
|
||||
void PowerGraph::showTracks(bool show)
|
||||
|
@ -90,7 +90,7 @@ void SpeedGraph::clear()
|
||||
_avg.clear();
|
||||
_mavg.clear();
|
||||
|
||||
GraphView::clear();
|
||||
GraphTab::clear();
|
||||
}
|
||||
|
||||
void SpeedGraph::setYUnits()
|
||||
|
@ -80,7 +80,7 @@ void TemperatureGraph::clear()
|
||||
{
|
||||
_avg.clear();
|
||||
|
||||
GraphView::clear();
|
||||
GraphTab::clear();
|
||||
}
|
||||
|
||||
void TemperatureGraph::setYUnits(Units units)
|
||||
|
@ -99,7 +99,7 @@ static Projection parseProjection(const QString &str, const GCS *gcs)
|
||||
bool RMap::parseIMP(const QByteArray &data)
|
||||
{
|
||||
QStringList lines = QString(data).split("\r\n");
|
||||
QList<CalibrationPoint> calibrationPoints;
|
||||
QVector<CalibrationPoint> calibrationPoints;
|
||||
const GCS *gcs = 0;
|
||||
QString projection, datum;
|
||||
QRegExp re("^P[0-9]+=");
|
||||
|
@ -130,7 +130,7 @@ void TileLoader::loadTilesSync(QVector<Tile> &list)
|
||||
for (int i = 0; i < tl.size(); i++) {
|
||||
Tile *t = tl[i];
|
||||
QString file = tileFile(*t);
|
||||
if (QFileInfo(file).exists())
|
||||
if (QFileInfo::exists(file))
|
||||
imgs.append(TileImage(file, t));
|
||||
}
|
||||
}
|
||||
|
@ -264,12 +264,12 @@ bool WMS::getCapabilities(const QString &url, const QString &file,
|
||||
if (d.get(dl, authorization))
|
||||
wait.exec();
|
||||
|
||||
if (QFileInfo(file).exists())
|
||||
return true;
|
||||
else {
|
||||
if (!QFileInfo::exists(file)) {
|
||||
_errorString = "Error downloading capabilities XML file";
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
WMS::WMS(const QString &file, const WMS::Setup &setup) : _valid(false)
|
||||
@ -277,7 +277,7 @@ WMS::WMS(const QString &file, const WMS::Setup &setup) : _valid(false)
|
||||
QString capaUrl = QString("%1%2service=WMS&request=GetCapabilities")
|
||||
.arg(setup.url(), setup.url().contains('?') ? "&" : "?");
|
||||
|
||||
if (!QFileInfo(file).exists())
|
||||
if (!QFileInfo::exists(file))
|
||||
if (!getCapabilities(capaUrl, file, setup.authorization()))
|
||||
return;
|
||||
if (!parseCapabilities(file, setup))
|
||||
|
@ -305,12 +305,12 @@ bool WMTS::downloadCapabilities(const QString &url, const QString &file,
|
||||
if (d.get(dl, authorization))
|
||||
wait.exec();
|
||||
|
||||
if (QFileInfo(file).exists())
|
||||
return true;
|
||||
else {
|
||||
if (!QFileInfo::exists(file)) {
|
||||
_errorString = "Error downloading capabilities XML file";
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
WMTS::WMTS(const QString &file, const WMTS::Setup &setup) : _valid(false)
|
||||
@ -319,7 +319,7 @@ WMTS::WMTS(const QString &file, const WMTS::Setup &setup) : _valid(false)
|
||||
"%1%2service=WMTS&Version=1.0.0&request=GetCapabilities").arg(setup.url(),
|
||||
setup.url().contains('?') ? "&" : "?"));
|
||||
|
||||
if (!url.isLocalFile() && !QFileInfo(file).exists())
|
||||
if (!url.isLocalFile() && !QFileInfo::exists(file))
|
||||
if (!downloadCapabilities(url.toString(), file, setup.authorization()))
|
||||
return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user