Changeset 13281 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2018-01-04T23:51:00+01:00 (6 years ago)
Author:
stoecker
Message:

see #15734 - drop some old checks

Location:
trunk/src/org/openstreetmap/josm/gui/layer
Files:
5 edited

Legend:

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

    r13257 r13281  
    378378        public CombineTracksToSegmentedTrackAction(GpxLayer layer) {
    379379            // FIXME: icon missing, create a new icon for this action
    380             //new ImageProvider("gpx_tracks_to_segmented_track").getResource().attachImageIcon(this, true);
     380            //new ImageProvider(..."gpx_tracks_to_segmented_track").getResource().attachImageIcon(this, true);
    381381            putValue(SHORT_DESCRIPTION, tr("Collect segments of all tracks and combine in a single track."));
    382382            putValue(NAME, tr("Combine tracks of this layer"));
     
    410410        public SplitTrackSegementsToTracksAction(GpxLayer layer) {
    411411            // FIXME: icon missing, create a new icon for this action
    412             //new ImageProvider("gpx_segmented_track_to_tracks").getResource().attachImageIcon(this, true);
     412            //new ImageProvider(..."gpx_segmented_track_to_tracks").getResource().attachImageIcon(this, true);
    413413            putValue(SHORT_DESCRIPTION, tr("Split multiple track segments of one track into multiple tracks."));
    414414            putValue(NAME, tr("Split track segments to tracks"));
     
    443443        public SplitTracksToLayersAction(GpxLayer layer) {
    444444            // FIXME: icon missing, create a new icon for this action
    445             //new ImageProvider("gpx_split_tracks_to_layers").getResource().attachImageIcon(this, true);
     445            //new ImageProvider(..."gpx_split_tracks_to_layers").getResource().attachImageIcon(this, true);
    446446            putValue(SHORT_DESCRIPTION, tr("Split the tracks of this layer to one new layer each."));
    447447            putValue(NAME, tr("Split tracks to new layers"));
  • trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/AudioMarker.java

    r12630 r13281  
    3030
    3131    public AudioMarker(LatLon ll, TemplateEngineDataProvider dataProvider, URL audioUrl, MarkerLayer parentLayer, double time, double offset) {
    32         super(ll, dataProvider, "speech", parentLayer, time, offset);
     32        super(ll, dataProvider, /* ICON(markers/) */ "speech", parentLayer, time, offset);
    3333        this.audioUrl = audioUrl;
    3434        this.syncOffset = 0.0;
  • trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/ImageMarker.java

    r10611 r13281  
    3939
    4040    public ImageMarker(LatLon ll, URL imageUrl, MarkerLayer parentLayer, double time, double offset) {
    41         super(ll, "photo", parentLayer, time, offset);
     41        super(ll, /* ICON(markers/) */ "photo", parentLayer, time, offset);
    4242        this.imageUrl = imageUrl;
    4343    }
  • trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/PlayHeadMarker.java

    r12846 r13281  
    6161    private PlayHeadMarker() {
    6262        super(LatLon.ZERO, "",
    63                 Config.getPref().get("marker.audiotracericon", "audio-tracer"),
     63                Config.getPref().get("marker.audiotracericon", /* ICON(markers/) */ "audio-tracer"),
    6464                null, -1.0, 0.0);
    6565        enabled = Config.getPref().getBoolean("marker.traceaudio", true);
  • trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/WebMarker.java

    r12620 r13281  
    3131
    3232    public WebMarker(LatLon ll, URL webUrl, MarkerLayer parentLayer, double time, double offset) {
    33         super(ll, "web", parentLayer, time, offset);
     33        super(ll, /* ICON(markers/) */ "web", parentLayer, time, offset);
    3434        CheckParameterUtil.ensureParameterNotNull(webUrl, "webUrl");
    3535        this.webUrl = webUrl;
Note: See TracChangeset for help on using the changeset viewer.