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

'Changed the constructor signature of the plugin main class'

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

Legend:

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

    r19298 r19471  
    2828       
    2929        <!-- set before publising -->
    30         <property name="commit.message" value="Update to JOSM r2748" />         
    31         <property name="plugin.main.version" value="2748" />
     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    <property name="josm"                   location="../../core/dist/josm-custom.jar"/>
  • applications/editors/josm/plugins/remotecontrol/src/org/openstreetmap/josm/plugins/remotecontrol/RemoteControlPlugin.java

    r16589 r19471  
    55import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
    66import org.openstreetmap.josm.plugins.Plugin;
     7import org.openstreetmap.josm.plugins.PluginInformation;
    78
    89/**
     
    1718     * Creates the plugin, and starts the HTTP server
    1819     */
    19     public RemoteControlPlugin()
     20    public RemoteControlPlugin(PluginInformation info)
    2021    {
     22        super(info);
    2123        restartServer();
    2224    }
Note: See TracChangeset for help on using the changeset viewer.