Changeset 19434 in osm for applications
- Timestamp:
- 2010-01-13T14:29:27+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/editgpx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/editgpx/build.xml
r19052 r19434 28 28 29 29 30 <property name="commit.message" value=" Updated to JOSM 2621; updated build.xml" />31 <property name="plugin.main.version" value="2 621" />30 <property name="commit.message" value="Changed constructor signature of plugin main class" /> 31 <property name="plugin.main.version" value="2830" /> 32 32 33 33 -
applications/editors/josm/plugins/editgpx/src/org/openstreetmap/josm/plugins/editgpx/EditGpxPlugin.java
r19052 r19434 18 18 import org.openstreetmap.josm.gui.layer.Layer; 19 19 import org.openstreetmap.josm.plugins.Plugin; 20 import org.openstreetmap.josm.plugins.PluginInformation; 20 21 21 22 import static org.openstreetmap.josm.tools.I18n.tr; … … 43 44 public static boolean active = false; 44 45 45 public EditGpxPlugin() { 46 public EditGpxPlugin(PluginInformation info) { 47 super(info); 46 48 dataSet = new DataSet(); 47 49 mode = new EditGpxMode(Main.map, "editgpx", tr("edit gpx tracks"), dataSet);
Note:
See TracChangeset
for help on using the changeset viewer.