aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/files/GPXParser.java
diff options
context:
space:
mode:
authorrsudev <rasch@munin-soft.de>2012-02-15 15:55:44 -0800
committerrsudev <rasch@munin-soft.de>2012-02-15 15:55:44 -0800
commitd29ce0d047542329b4396b02cf42567c235e5cb0 (patch)
tree65ef3351e11f22f38752e69ecfdc1f3cdc5cc3e7 /main/src/cgeo/geocaching/files/GPXParser.java
parentd53b44562e1d531292f19c4b46028b47fdd7fd3f (diff)
parent0abae05e848002c572eba0b258bc4bdee023f24b (diff)
downloadcgeo-d29ce0d047542329b4396b02cf42567c235e5cb0.zip
cgeo-d29ce0d047542329b4396b02cf42567c235e5cb0.tar.gz
cgeo-d29ce0d047542329b4396b02cf42567c235e5cb0.tar.bz2
Merge pull request #1117 from rsudev/issue1040b
Fix #1042, waypoint types
Diffstat (limited to 'main/src/cgeo/geocaching/files/GPXParser.java')
-rw-r--r--main/src/cgeo/geocaching/files/GPXParser.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/files/GPXParser.java b/main/src/cgeo/geocaching/files/GPXParser.java
index 79e790c..081a28a 100644
--- a/main/src/cgeo/geocaching/files/GPXParser.java
+++ b/main/src/cgeo/geocaching/files/GPXParser.java
@@ -307,7 +307,7 @@ public abstract class GPXParser extends FileParser {
// lookup cache for waypoint in already parsed caches
final cgCache cacheForWaypoint = result.get(cacheGeocodeForWaypoint);
if (cacheForWaypoint != null) {
- final cgWaypoint waypoint = new cgWaypoint(cache.getShortdesc(), convertWaypointSym2Type(sym));
+ final cgWaypoint waypoint = new cgWaypoint(cache.getShortdesc(), convertWaypointSym2Type(sym), false);
waypoint.setId(-1);
waypoint.setGeocode(cacheGeocodeForWaypoint);
waypoint.setPrefix(cache.getName().substring(0, 2));