Changeset 19439 in osm for applications


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

'Changed the constructor signature of the plugin main class'

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

Legend:

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

    r19292 r19439  
    2727<project name="graphview" default="dist" basedir=".">
    2828
    29         <property name="commit.message" value="Updated to JOSM r2748" />
    30         <property name="plugin.main.version" value="2748" />
     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/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/GraphViewPlugin.java

    r19054 r19439  
    2121import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
    2222import org.openstreetmap.josm.plugins.Plugin;
     23import org.openstreetmap.josm.plugins.PluginInformation;
    2324import org.openstreetmap.josm.plugins.graphview.core.access.AccessRuleset;
    2425import org.openstreetmap.josm.plugins.graphview.core.access.AccessRulesetReader;
     
    7475
    7576        /** creates the plugin */
    76         public GraphViewPlugin() {
     77        public GraphViewPlugin(PluginInformation info) {
     78                super(info);
    7779
    7880                preferences = GraphViewPreferences.getInstance();
Note: See TracChangeset for help on using the changeset viewer.