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

Fixed Qt6 build

This commit is contained in:
Martin Tůma 2022-09-23 23:57:58 +02:00
parent 1921087346
commit c0f2c1b7ad

View File

@ -683,10 +683,10 @@ QColor KMLParser::color()
return QColor(); return QColor();
bool aok, bok, gok, rok; bool aok, bok, gok, rok;
int a = str.midRef(0, 2).toInt(&aok, 16); int a = str.mid(0, 2).toInt(&aok, 16);
int b = str.midRef(2, 2).toInt(&bok, 16); int b = str.mid(2, 2).toInt(&bok, 16);
int g = str.midRef(4, 2).toInt(&gok, 16); int g = str.mid(4, 2).toInt(&gok, 16);
int r = str.midRef(6, 2).toInt(&rok, 16); int r = str.mid(6, 2).toInt(&rok, 16);
return (aok && bok && gok && rok) ? QColor(r, g, b, a) : QColor(); return (aok && bok && gok && rok) ? QColor(r, g, b, a) : QColor();
} }