mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-06-27 19:49:15 +02:00
Fixed assignment instead of compare
This commit is contained in:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user