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

'Changed the constructor signature of the plugin main class'

Location:
applications/editors/josm/plugins/tagging-preset-tester
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/tagging-preset-tester/build.xml

    r19222 r19481  
    2828
    2929
    30         <property name="commit.message" value="Update to JOSM r2690, PropertiesDialog was recently moved" />
    31         <property name="plugin.main.version" value="2690" />
     30        <property name="commit.message" value="Changed the constructor signature of the plugin main class" />
     31        <property name="plugin.main.version" value="2830" />
    3232
    3333
  • applications/editors/josm/plugins/tagging-preset-tester/src/org/openstreetmap/josm/plugins/taggingpresettester/TaggingPresetTester.java

    r13569 r19481  
    2727import org.openstreetmap.josm.data.osm.OsmPrimitive;
    2828import org.openstreetmap.josm.gui.tagging.TaggingPreset;
     29import org.openstreetmap.josm.plugins.PluginInformation;
    2930import org.xml.sax.SAXException;
    3031
     
    7677        panel.repaint();
    7778    }
    78 
     79   
     80    public TaggingPresetTester(PluginInformation info) {
     81        this(new String[]{});
     82    }
     83   
    7984    public TaggingPresetTester(String[] args) {
    8085        super(tr("Tagging Preset Tester"));
Note: See TracChangeset for help on using the changeset viewer.