Ignore:
Timestamp:
2010-01-13T15:13:48+01:00 (14 years ago)
Author:
guggis
Message:

'Changed the constructor signature of the plugin main class'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/RoutingPlugin.java

    r19066 r19475  
    2828package com.innovant.josm.plugin.routing;
    2929
    30 import static org.openstreetmap.josm.tools.I18n.marktr;
    3130import static org.openstreetmap.josm.tools.I18n.tr;
    3231
     
    4443import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
    4544import org.openstreetmap.josm.plugins.Plugin;
     45import org.openstreetmap.josm.plugins.PluginInformation;
    4646
    4747import com.innovant.josm.plugin.routing.actions.AddRouteNodeAction;
     
    127127     * Default Constructor
    128128     */
    129     public RoutingPlugin() {
    130         super();
     129    public RoutingPlugin(PluginInformation info) {
     130        super(info);
    131131        plugin = this; // Assign reference to the plugin class
    132132        DOMConfigurator.configure("log4j.xml");
Note: See TracChangeset for help on using the changeset viewer.