1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-04-21 12:49:10 +02:00

Compare commits

..

No commits in common. "779f98a206f55872e19064b33073b9bdbfa2da3e" and "7df3eea21a507c8f779ca27fe38f1aa52df45dc1" have entirely different histories.

4 changed files with 3 additions and 5 deletions

View File

@ -1,4 +1,4 @@
version: 13.19.{build} version: 13.18.{build}
configuration: configuration:
- Release - Release

View File

@ -3,7 +3,7 @@ unix:!macx:!android {
} else { } else {
TARGET = GPXSee TARGET = GPXSee
} }
VERSION = 13.19 VERSION = 13.18
QT += core \ QT += core \

View File

@ -37,7 +37,7 @@ Unicode true
; The name of the installer ; The name of the installer
Name "GPXSee" Name "GPXSee"
; Program version ; Program version
!define VERSION "13.19" !define VERSION "13.18"
; The file to write ; The file to write
OutFile "GPXSee-${VERSION}_x64.exe" OutFile "GPXSee-${VERSION}_x64.exe"

View File

@ -603,8 +603,6 @@ bool GeoJSONParser::geometryCollection(const QJsonObject &object,
bool GeoJSONParser::feature(const QJsonObject &object, const Projection &parent, bool GeoJSONParser::feature(const QJsonObject &object, const Projection &parent,
QList<TrackData> &tracks, QList<Area> &areas, QVector<Waypoint> &waypoints) QList<TrackData> &tracks, QList<Area> &areas, QVector<Waypoint> &waypoints)
{ {
if (object["geometry"].isNull())
return true;
if (!object["geometry"].isObject()) { if (!object["geometry"].isObject()) {
_errorString = "Invalid/missing Feature geometry object"; _errorString = "Invalid/missing Feature geometry object";
return false; return false;