Ignore:
Timestamp:
2008-02-21T19:53:16+01:00 (17 years ago)
Author:
david
Message:

(a) add preference dialog, (b) add audio tracing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/GpxReader.java

    r547 r553  
    234234                                } else if (qName.equals("rtept")) {
    235235                                        currentState = states.pop();
     236                                        currentWayPoint.setTime();
    236237                                        currentRoute.routePoints.add(currentWayPoint);
    237238                                } else if (qName.equals("trkpt")) {
    238239                                        currentState = states.pop();
     240                                        currentWayPoint.setTime();
    239241                                        currentTrackSeg.add(currentWayPoint);
    240242                                        if (Main.pref.getBoolean("marker.namedtrackpoints") &&
     
    246248                                } else if (qName.equals("wpt")) {
    247249                                        currentState = states.pop();
     250                                        currentWayPoint.setTime();
    248251                                        currentData.waypoints.add(currentWayPoint);
    249252                                }
Note: See TracChangeset for help on using the changeset viewer.