Changeset 19489 in osm for applications/editors/josm


Ignore:
Timestamp:
2010-01-13T15:26:56+01:00 (15 years ago)
Author:
guggis
Message:

'Changed the constructor signature of the plugin main class'

Location:
applications/editors/josm/plugins/waydownloader
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/waydownloader/build.xml

    r19047 r19489  
    2626      ** update before publishing
    2727        -->
    28         <property name="commit.message" value="Update to JOSM 2616" />
    29         <property name="plugin.main.version" value="2616" />
     28        <property name="commit.message" value="Changed the constructor signature of the plugin main class" />
     29        <property name="plugin.main.version" value="2830" />
    3030
    3131
  • applications/editors/josm/plugins/waydownloader/src/org/openstreetmap/josm/plugins/waydownloader/WayDownloaderPlugin.java

    r19045 r19489  
    2929import org.openstreetmap.josm.gui.progress.PleaseWaitProgressMonitor;
    3030import org.openstreetmap.josm.plugins.Plugin;
     31import org.openstreetmap.josm.plugins.PluginInformation;
    3132import org.openstreetmap.josm.tools.Shortcut;
    3233
     
    4344
    4445    /** Plugin constructor called at JOSM startup */
    45     public WayDownloaderPlugin() {
     46    public WayDownloaderPlugin(PluginInformation info) {
     47        super(info);
    4648        //add WayDownloadAction to tools menu
    4749        MainMenu.add(Main.main.menu.toolsMenu, new WayDownloadAction());
Note: See TracChangeset for help on using the changeset viewer.