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

Compare commits

..

No commits in common. "5bc7487c3a675ed3f8a0201dc7aa41b587170432" and "4f1f3e569b8a1f620af49a9371525d3e222d09b1" have entirely different histories.

View File

@ -57,9 +57,9 @@ static QMap<uint,uint> orderMap = orderMapInit();
static uint order(uint type) static uint order(uint type)
{ {
uint st = ((type>>16) == BUAARE) ? type : (type & 0xFFFF0000); uint st = (type>>16 == BUAARE) ? type : type && 0xFFFF;
QMap<uint, uint>::const_iterator it = orderMap.find(st); QMap<uint, uint>::const_iterator it = orderMap.find(st);
return (it == orderMap.constEnd()) ? (type>>16) + 512 : it.value(); return (it == orderMap.constEnd()) ? type + 512 : it.value();
} }
static void warning(const ISO8211::Field &FRID, uint PRIM) static void warning(const ISO8211::Field &FRID, uint PRIM)