Changeset 35221 in osm for applications/editors/josm/plugins/DirectUpload/src
- Timestamp:
- 2019-11-03T22:22:25+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/DirectUpload/src/org/openstreetmap/josm/plugins/DirectUpload/UploadDataGui.java
r35041 r35221 25 25 import org.openstreetmap.josm.data.gpx.GpxData; 26 26 import org.openstreetmap.josm.data.gpx.GpxTrack; 27 import org.openstreetmap.josm.data.gpx.IGpxTrack; 27 28 import org.openstreetmap.josm.gui.ExtendedDialog; 28 29 import org.openstreetmap.josm.gui.MainApplication; … … 178 179 // non-breaking space in title fixes #10275 179 180 if (gpxData != null) { 180 GpxTrack firstTrack = gpxData.tracks.isEmpty() ? null : gpxData.tracks.iterator().next(); 181 IGpxTrack firstTrack = gpxData.tracks.isEmpty() ? null : gpxData.tracks.iterator().next(); 181 182 Object meta_desc = gpxData.attr.get(GpxConstants.META_DESC); 182 183 if (meta_desc != null) {
Note:
See TracChangeset
for help on using the changeset viewer.