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

Fixed broken error string encoding

This commit is contained in:
Martin Tůma 2024-04-01 20:22:28 +02:00
parent 9b46845568
commit b069d2ac3f

View File

@ -106,7 +106,7 @@ Data::Data(const QString &fileName, bool tryUnknown)
_errorLine = 0;
if (!file.open(QFile::ReadOnly)) {
_errorString = qPrintable(file.errorString());
_errorString = file.errorString();
return;
}