1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 03:35: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());
else
if (!loadFile(fi.absoluteFilePath()))
qWarning(qPrintable(fi.absoluteFilePath() + ": "
+ _errorString));
qWarning("%s: %s", qPrintable(fi.absoluteFilePath()),
qPrintable(_errorString));
}
}