1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-18 19:52:09 +01:00

Fixed broken error path reporting

This commit is contained in:
Martin Tůma 2020-03-27 23:03:11 +01:00
parent 4d652aeaff
commit 77ac919b83

View File

@ -75,7 +75,7 @@ QList<Map*> MapList::loadDir(const QString &path, QString &errorString)
if (map) if (map)
list.append(map); list.append(map);
else else
qWarning(qPrintable(path + ": " + errorString)); qWarning(qPrintable(fi.absoluteFilePath() + ": " + errorString));
if (terminate) if (terminate)
break; break;
} }