Ignore:
Timestamp:
2020-08-10T23:19:03+02:00 (4 years ago)
Author:
simon04
Message:

SplitTrackSegmentsToTracksAction: fix typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/GpxLayer.java

    r16850 r16863  
    278278        List<Action> expert = Arrays.asList(
    279279                new CombineTracksToSegmentedTrackAction(this),
    280                 new SplitTrackSegementsToTracksAction(this),
     280                new SplitTrackSegmentsToTracksAction(this),
    281281                new SplitTracksToLayersAction(this));
    282282
     
    481481     * @since 13210
    482482     */
    483     public static class SplitTrackSegementsToTracksAction extends AbstractAction {
     483    public static class SplitTrackSegmentsToTracksAction extends AbstractAction {
    484484        private final transient GpxLayer layer;
    485485
    486486        /**
    487          * Create a new SplitTrackSegementsToTracksAction
     487         * Create a new SplitTrackSegmentsToTracksAction
    488488         * @param layer The layer with the data to work on.
    489489         */
    490         public SplitTrackSegementsToTracksAction(GpxLayer layer) {
     490        public SplitTrackSegmentsToTracksAction(GpxLayer layer) {
    491491            // FIXME: icon missing, create a new icon for this action
    492492            //new ImageProvider(..."gpx_segmented_track_to_tracks").getResource().attachImageIcon(this, true);
     
    518518
    519519        /**
    520          * Create a new SplitTrackSegementsToTracksAction
     520         * Create a new SplitTrackSegmentsToTracksAction
    521521         * @param layer The layer with the data to work on.
    522522         */
Note: See TracChangeset for help on using the changeset viewer.