Changeset 19473 in osm for applications
- Timestamp:
- 2010-01-13T15:12:31+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/routes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/routes/build.xml
r19339 r19473 27 27 <project name="routes" default="dist" basedir="."> 28 28 29 <property name="commit.message" value=" Update to JOSM 2621" />30 <property name="plugin.main.version" value="2 791" />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 <property name="josm" location="../../core/dist/josm-custom.jar"/> -
applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/RoutesPlugin.java
r19064 r19473 21 21 22 22 import org.openstreetmap.josm.plugins.Plugin; 23 import org.openstreetmap.josm.plugins.PluginInformation; 23 24 import org.openstreetmap.josm.plugins.routes.xml.Routes; 24 25 import org.openstreetmap.josm.plugins.routes.xml.RoutesXMLLayer; … … 29 30 private boolean isShown; 30 31 31 public RoutesPlugin() { 32 public RoutesPlugin(PluginInformation info) { 33 super(info); 32 34 MapView.addLayerChangeListener(this); 33 35
Note:
See TracChangeset
for help on using the changeset viewer.