Changeset 19426 in osm


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

'Uses new constructor for Plugin'

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

Legend:

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

    r19290 r19426  
    2828
    2929
    30         <property name="commit.message" value="Update to JOSM r2748" />
    31         <property name="plugin.main.version" value="2748" />
     30        <property name="commit.message" value="Uses new constructor for Plugin" />
     31        <property name="plugin.main.version" value="2830" />
    3232
    3333        <property name="josm"                   location="../../core/dist/josm-custom.jar"/>
  • applications/editors/josm/plugins/colorscheme/src/at/dallermassl/josm/plugin/colorscheme/ColorSchemePlugin.java

    r13497 r19426  
    77import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
    88import org.openstreetmap.josm.plugins.Plugin;
     9import org.openstreetmap.josm.plugins.PluginInformation;
    910
    1011/**
     
    1819     * Default Constructor
    1920     */
    20     public ColorSchemePlugin() {
    21 
     21    public ColorSchemePlugin(PluginInformation info) {
     22        super(info);
    2223    }
    2324
Note: See TracChangeset for help on using the changeset viewer.