Ignore:
Timestamp:
2013-08-21T03:47:16+02:00 (13 years ago)
Author:
donvip
Message:

[josm_plugins] fix #8987 - bump min JOSM version of nearly all plugins to r6162 + code update/cleanup, fix warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge/WMSRacer.java

    r26174 r29854  
    99
    1010import org.openstreetmap.josm.gui.layer.Layer;
     11import org.openstreetmap.josm.gui.MapView;
    1112import org.openstreetmap.josm.gui.MapView.LayerChangeListener;
    1213import org.openstreetmap.josm.gui.MapFrame;
     
    9596    public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) {
    9697        if (oldFrame != null)
    97             oldFrame.mapView.removeLayerChangeListener(this);
     98            MapView.removeLayerChangeListener(this);
    9899
    99100        driveAction.frame = newFrame;
     
    101102
    102103        if (newFrame != null)
    103             newFrame.mapView.addLayerChangeListener(this);
     104            MapView.addLayerChangeListener(this);
    104105    }
    105106
Note: See TracChangeset for help on using the changeset viewer.