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:
parent
42bf36fdfa
commit
1830c038f3
@ -130,7 +130,7 @@ public:
|
|||||||
static bool isCountry(quint32 type)
|
static bool isCountry(quint32 type)
|
||||||
{return (type >= 0x1400 && type <= 0x153f);}
|
{return (type >= 0x1400 && type <= 0x153f);}
|
||||||
static bool isState(quint32 type)
|
static bool isState(quint32 type)
|
||||||
{return (type = TYPE(0x1e));}
|
{return (type == TYPE(0x1e));}
|
||||||
|
|
||||||
static POIClass poiClass(quint32 type);
|
static POIClass poiClass(quint32 type);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user