Changeset 553 in josm for trunk/src/org/openstreetmap/josm/io
- Timestamp:
- 2008-02-21T19:53:16+01:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/GpxReader.java
r547 r553 234 234 } else if (qName.equals("rtept")) { 235 235 currentState = states.pop(); 236 currentWayPoint.setTime(); 236 237 currentRoute.routePoints.add(currentWayPoint); 237 238 } else if (qName.equals("trkpt")) { 238 239 currentState = states.pop(); 240 currentWayPoint.setTime(); 239 241 currentTrackSeg.add(currentWayPoint); 240 242 if (Main.pref.getBoolean("marker.namedtrackpoints") && … … 246 248 } else if (qName.equals("wpt")) { 247 249 currentState = states.pop(); 250 currentWayPoint.setTime(); 248 251 currentData.waypoints.add(currentWayPoint); 249 252 }
Note:
See TracChangeset
for help on using the changeset viewer.