Changeset 16863 in josm for trunk/src/org
- Timestamp:
- 2020-08-10T23:19:03+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/GpxLayer.java
r16850 r16863 278 278 List<Action> expert = Arrays.asList( 279 279 new CombineTracksToSegmentedTrackAction(this), 280 new SplitTrackSeg ementsToTracksAction(this),280 new SplitTrackSegmentsToTracksAction(this), 281 281 new SplitTracksToLayersAction(this)); 282 282 … … 481 481 * @since 13210 482 482 */ 483 public static class SplitTrackSeg ementsToTracksAction extends AbstractAction {483 public static class SplitTrackSegmentsToTracksAction extends AbstractAction { 484 484 private final transient GpxLayer layer; 485 485 486 486 /** 487 * Create a new SplitTrackSeg ementsToTracksAction487 * Create a new SplitTrackSegmentsToTracksAction 488 488 * @param layer The layer with the data to work on. 489 489 */ 490 public SplitTrackSeg ementsToTracksAction(GpxLayer layer) {490 public SplitTrackSegmentsToTracksAction(GpxLayer layer) { 491 491 // FIXME: icon missing, create a new icon for this action 492 492 //new ImageProvider(..."gpx_segmented_track_to_tracks").getResource().attachImageIcon(this, true); … … 518 518 519 519 /** 520 * Create a new SplitTrackSeg ementsToTracksAction520 * Create a new SplitTrackSegmentsToTracksAction 521 521 * @param layer The layer with the data to work on. 522 522 */
Note:
See TracChangeset
for help on using the changeset viewer.