Changeset 19450 in osm for applications/editors/josm/plugins/measurement
- Timestamp:
- 2010-01-13T14:46:10+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/measurement
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/measurement/build.xml
r19058 r19450 27 27 <project name="measurement" default="dist" basedir="."> 28 28 29 <property name="commit.message" value=" Updated to JOSM 2621; updated build.xml" />30 <property name="plugin.main.version" value="2 621" />29 <property name="commit.message" value="Changed the constructor signature of the plugin main class" /> 30 <property name="plugin.main.version" value="2830" /> 31 31 32 32 -
applications/editors/josm/plugins/measurement/src/org/openstreetmap/josm/plugins/measurement/MeasurementPlugin.java
r19058 r19450 10 10 import org.openstreetmap.josm.gui.layer.Layer; 11 11 import org.openstreetmap.josm.plugins.Plugin; 12 import org.openstreetmap.josm.plugins.PluginInformation; 12 13 13 14 public class MeasurementPlugin extends Plugin { … … 18 19 protected static MeasurementLayer currentLayer; 19 20 20 public MeasurementPlugin() { 21 public MeasurementPlugin(PluginInformation info) { 22 super(info); 21 23 mode = new MeasurementMode(Main.map, "measurement", tr("measurement mode")); 22 24 btn = new IconToggleButton(mode);
Note:
See TracChangeset
for help on using the changeset viewer.