Changeset 19489 in osm for applications/editors/josm
- Timestamp:
- 2010-01-13T15:26:56+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/waydownloader
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/waydownloader/build.xml
r19047 r19489 26 26 ** update before publishing 27 27 --> 28 <property name="commit.message" value=" Update to JOSM 2616" />29 <property name="plugin.main.version" value="2 616" />28 <property name="commit.message" value="Changed the constructor signature of the plugin main class" /> 29 <property name="plugin.main.version" value="2830" /> 30 30 31 31 -
applications/editors/josm/plugins/waydownloader/src/org/openstreetmap/josm/plugins/waydownloader/WayDownloaderPlugin.java
r19045 r19489 29 29 import org.openstreetmap.josm.gui.progress.PleaseWaitProgressMonitor; 30 30 import org.openstreetmap.josm.plugins.Plugin; 31 import org.openstreetmap.josm.plugins.PluginInformation; 31 32 import org.openstreetmap.josm.tools.Shortcut; 32 33 … … 43 44 44 45 /** Plugin constructor called at JOSM startup */ 45 public WayDownloaderPlugin() { 46 public WayDownloaderPlugin(PluginInformation info) { 47 super(info); 46 48 //add WayDownloadAction to tools menu 47 49 MainMenu.add(Main.main.menu.toolsMenu, new WayDownloadAction());
Note:
See TracChangeset
for help on using the changeset viewer.