Changeset 23193 in osm for applications/editors/josm/plugins/measurement/src/org
- Timestamp:
- 2010-09-15T19:01:04+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/measurement/src/org/openstreetmap/josm/plugins/measurement/MeasurementPlugin.java
r19450 r23193 20 20 21 21 public MeasurementPlugin(PluginInformation info) { 22 22 super(info); 23 23 mode = new MeasurementMode(Main.map, "measurement", tr("measurement mode")); 24 24 btn = new IconToggleButton(mode); … … 47 47 } 48 48 public void layerRemoved(final Layer oldLayer) { 49 50 49 if (oldLayer != null && oldLayer == currentLayer) 50 MapView.removeLayerChangeListener(this); 51 51 } 52 52 });
Note:
See TracChangeset
for help on using the changeset viewer.