Changeset 20773 in osm
- Timestamp:
- 2010-04-02T06:29:42+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/public_transport/src/public_transport
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/public_transport/src/public_transport/StopImporterAction.java
r20772 r20773 153 153 } 154 154 else if ("stopImporter.settingsSuggestStops".equals(event.getActionCommand())) 155 { 156 currentTrack.suggestStops(); 157 } 155 Main.main.undoRedo.add(new TrackSuggestStopsCommand(this)); 158 156 else if ("stopImporter.stoplistFind".equals(event.getActionCommand())) 159 157 findNodesInTable(dialog.getStoplistTable(), currentTrack.stoplistTM.nodes); -
applications/editors/josm/plugins/public_transport/src/public_transport/TrackReference.java
r20772 r20773 68 68 this.timeWindow = 20; 69 69 this.threshold = 20; 70 } 71 72 public GpxTrack getGpxTrack() 73 { 74 return track; 70 75 } 71 76
Note:
See TracChangeset
for help on using the changeset viewer.