Changeset 19434 in osm for applications/editors


Ignore:
Timestamp:
2010-01-13T14:29:27+01:00 (15 years ago)
Author:
guggis
Message:

'Changed constructor signature of plugin main class'

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

Legend:

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

    r19052 r19434  
    2828
    2929
    30         <property name="commit.message" value="Updated to JOSM 2621; updated build.xml" />
    31         <property name="plugin.main.version" value="2621" />
     30        <property name="commit.message" value="Changed constructor signature of plugin main class" />
     31        <property name="plugin.main.version" value="2830" />
    3232
    3333
  • applications/editors/josm/plugins/editgpx/src/org/openstreetmap/josm/plugins/editgpx/EditGpxPlugin.java

    r19052 r19434  
    1818import org.openstreetmap.josm.gui.layer.Layer;
    1919import org.openstreetmap.josm.plugins.Plugin;
     20import org.openstreetmap.josm.plugins.PluginInformation;
    2021
    2122import static org.openstreetmap.josm.tools.I18n.tr;
     
    4344    public static boolean active = false;
    4445
    45     public EditGpxPlugin() {
     46    public EditGpxPlugin(PluginInformation info) {
     47        super(info);
    4648        dataSet = new DataSet();
    4749        mode = new EditGpxMode(Main.map, "editgpx", tr("edit gpx tracks"), dataSet);
Note: See TracChangeset for help on using the changeset viewer.