1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 11:45:53 +01:00

Fixed remaining qWarning() format warning

This commit is contained in:
Martin Tůma 2020-03-28 19:15:03 +01:00
parent 9e7ebe930e
commit d5fc06d9d1

View File

@ -63,8 +63,8 @@ void POI::loadDir(const QString &path)
loadDir(fi.absoluteFilePath()); loadDir(fi.absoluteFilePath());
else else
if (!loadFile(fi.absoluteFilePath())) if (!loadFile(fi.absoluteFilePath()))
qWarning(qPrintable(fi.absoluteFilePath() + ": " qWarning("%s: %s", qPrintable(fi.absoluteFilePath()),
+ _errorString)); qPrintable(_errorString));
} }
} }