1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 06:43:22 +02:00

Improved track date handling

This commit is contained in:
Martin Tůma 2016-11-23 18:45:06 +01:00
parent 1242423ca8
commit 307405d661

View File

@ -110,7 +110,8 @@ bool IGCParser::readHRecord(const char *line, int len)
return false;
}
_date = QDate(2000 + y, m, d);
_date = QDate(y + 2000 < QDate::currentDate().year() ? 2000 + y : 1900 + y,
m, d);
if (!_date.isValid()) {
_errorString = "Invalid date";
return false;