Changeset 19473 in osm for applications


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

'Changed the constructor signature of the plugin main class'

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

Legend:

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

    r19339 r19473  
    2727<project name="routes" default="dist" basedir=".">
    2828
    29         <property name="commit.message" value="Update to JOSM 2621" />
    30         <property name="plugin.main.version" value="2791" />
     29        <property name="commit.message" value="Changed the constructor signature of the plugin main class" />
     30        <property name="plugin.main.version" value="2830" />
    3131
    3232        <property name="josm"                   location="../../core/dist/josm-custom.jar"/>
  • applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/RoutesPlugin.java

    r19064 r19473  
    2121
    2222import org.openstreetmap.josm.plugins.Plugin;
     23import org.openstreetmap.josm.plugins.PluginInformation;
    2324import org.openstreetmap.josm.plugins.routes.xml.Routes;
    2425import org.openstreetmap.josm.plugins.routes.xml.RoutesXMLLayer;
     
    2930    private boolean isShown;
    3031   
    31     public RoutesPlugin() {
     32    public RoutesPlugin(PluginInformation info) {
     33        super(info);
    3234        MapView.addLayerChangeListener(this);
    3335       
Note: See TracChangeset for help on using the changeset viewer.