Ignore:
Timestamp:
2019-11-02T15:33:57+01:00 (5 years ago)
Author:
donvip
Message:

update to JOSM 15496

Location:
applications/editors/josm/plugins/gpsblam
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/gpsblam/build.xml

    r34753 r35214  
    55    <property name="commit.message" value="Commit message"/>
    66    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    7     <property name="plugin.main.version" value="14456"/>
     7    <property name="plugin.main.version" value="15496"/>
    88
    99    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/gpsblam/src/org/openstreetmap/josm/plugins/gpsblam/GPSBlamInputData.java

    r34753 r35214  
    1111import org.openstreetmap.josm.data.coor.CachedLatLon;
    1212import org.openstreetmap.josm.data.gpx.GpxTrack;
    13 import org.openstreetmap.josm.data.gpx.GpxTrackSegment;
     13import org.openstreetmap.josm.data.gpx.IGpxTrackSegment;
    1414import org.openstreetmap.josm.data.gpx.WayPoint;
    1515import org.openstreetmap.josm.data.projection.Projection;
     
    3434            if (l.isVisible() && l instanceof GpxLayer) {
    3535                for (GpxTrack track : ((GpxLayer) l).data.tracks) {
    36                     for (GpxTrackSegment segment: track.getSegments()) {
     36                    for (IGpxTrackSegment segment: track.getSegments()) {
    3737                        for (WayPoint wayPoint : segment.getWayPoints()) {
    3838                            if (p2.equals(p1)) {
Note: See TracChangeset for help on using the changeset viewer.