Changeset 19463 in osm for applications/editors/josm


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

'Changed the constructor signature of the plugin main class'

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

Legend:

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

    r19060 r19463  
    2727<project name="openstreetbugs" default="dist" basedir=".">
    2828
    29         <property name="commit.message" value="Updated to JOSM 2621; updated build.xml" />
    30         <property name="plugin.main.version" value="2621" />
     29        <property name="commit.message" value="Changed the constructor signature of the plugin main class" />
     30        <property name="plugin.main.version" value="2830" />
    3131
    3232        <property name="josm"                   location="../../core/dist/josm-custom.jar"/>
  • applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/OsbPlugin.java

    r19363 r19463  
    3030import static org.openstreetmap.josm.tools.I18n.tr;
    3131
    32 import java.net.URL;
    33 
    3432import javax.swing.ImageIcon;
    3533import javax.swing.JOptionPane;
     
    4644import org.openstreetmap.josm.gui.layer.OsmDataLayer;
    4745import org.openstreetmap.josm.plugins.Plugin;
     46import org.openstreetmap.josm.plugins.PluginInformation;
    4847import org.openstreetmap.josm.plugins.osb.api.DownloadAction;
    4948import org.openstreetmap.josm.plugins.osb.gui.OsbDialog;
     
    6766    private DownloadAction download = new DownloadAction();
    6867
    69     public OsbPlugin() {
    70         super();
     68    public OsbPlugin(PluginInformation info) {
     69        super(info);
    7170        initConfig();
    7271        dataSet = new DataSet();
Note: See TracChangeset for help on using the changeset viewer.