Changeset 19439 in osm for applications
- Timestamp:
- 2010-01-13T14:37:31+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/graphview
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/graphview/build.xml
r19292 r19439 27 27 <project name="graphview" default="dist" basedir="."> 28 28 29 <property name="commit.message" value=" Updated to JOSM r2748" />30 <property name="plugin.main.version" value="2 748" />29 <property name="commit.message" value="Changed the constructor signature of the plugin main class" /> 30 <property name="plugin.main.version" value="2830" /> 31 31 32 32 <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 21 21 import org.openstreetmap.josm.gui.preferences.PreferenceSetting; 22 22 import org.openstreetmap.josm.plugins.Plugin; 23 import org.openstreetmap.josm.plugins.PluginInformation; 23 24 import org.openstreetmap.josm.plugins.graphview.core.access.AccessRuleset; 24 25 import org.openstreetmap.josm.plugins.graphview.core.access.AccessRulesetReader; … … 74 75 75 76 /** creates the plugin */ 76 public GraphViewPlugin() { 77 public GraphViewPlugin(PluginInformation info) { 78 super(info); 77 79 78 80 preferences = GraphViewPreferences.getInstance();
Note:
See TracChangeset
for help on using the changeset viewer.