Changeset 19413 in osm


Ignore:
Timestamp:
2010-01-12T18:33:41+01:00 (15 years ago)
Author:
guggis
Message:

'Uses new constructor for Plugin'

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

Legend:

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

    r18976 r19413  
    2828
    2929
    30         <property name="commit.message" value="Made build file more robust" />
    31         <property name="plugin.main.version" value="2355" />
     30        <property name="commit.message" value="Uses new constructor for Plugin" />
     31        <property name="plugin.main.version" value="2830" />
    3232
    3333        <!--
  • applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/TagEditorPlugin.java

    r14323 r19413  
    22
    33import org.openstreetmap.josm.plugins.Plugin;
     4import org.openstreetmap.josm.plugins.PluginInformation;
    45
    56public class TagEditorPlugin extends Plugin {
     
    1011         * constructor
    1112         */
    12         public TagEditorPlugin() {
     13        public TagEditorPlugin(PluginInformation info) {
     14                super(info);
    1315                action = new LaunchAction();
    1416        }
Note: See TracChangeset for help on using the changeset viewer.