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

Fixed assignment instead of compare

This commit is contained in:
Martin Tůma 2021-02-07 09:08:28 +01:00
parent 42bf36fdfa
commit 1830c038f3

View File

@ -130,7 +130,7 @@ public:
static bool isCountry(quint32 type)
{return (type >= 0x1400 && type <= 0x153f);}
static bool isState(quint32 type)
{return (type = TYPE(0x1e));}
{return (type == TYPE(0x1e));}
static POIClass poiClass(quint32 type);