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

'Uses new constructor for plugin'

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

Legend:

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

    r19411 r19415  
    2828
    2929
    30         <property name="commit.message" value="Update to JOSM 2817" />
    31         <property name="plugin.main.version" value="2817" />
     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/wmsplugin/src/wmsplugin/WMSPlugin.java

    r19411 r19415  
    3636import org.openstreetmap.josm.io.MirroredInputStream;
    3737import org.openstreetmap.josm.plugins.Plugin;
     38import org.openstreetmap.josm.plugins.PluginInformation;
    3839
    3940import wmsplugin.io.WMSLayerExporter;
     
    6162    }
    6263
    63     public WMSPlugin() {
     64    public WMSPlugin(PluginInformation info) {
     65        super(info);
    6466        refreshMenu();
    6567        cache.setExpire(CacheFiles.EXPIRE_MONTHLY, false);
Note: See TracChangeset for help on using the changeset viewer.