Changeset 33249 in osm for applications
- Timestamp:
- 2017-04-17T01:13:55+02:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/junctionchecking
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/junctionchecking/build.xml
r32680 r33249 3 3 <property name="commit.message" value="Changed the constructor signature of the plugin main class"/> 4 4 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 5 <property name="plugin.main.version" value="1 0580"/>5 <property name="plugin.main.version" value="11713"/> 6 6 7 7 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/junctionchecking/src/org/openstreetmap/josm/plugins/JunctionChecker/JunctionCheckerMapMode.java
r32596 r33249 34 34 private static final long serialVersionUID = 3442408951505263850L; 35 35 36 public JunctionCheckerMapMode( MapFrame mapFrame,String name, String desc) {37 super(name, "junctionchecker.png", desc, mapFrame,Cursor.getPredefinedCursor(Cursor.CROSSHAIR_CURSOR));36 public JunctionCheckerMapMode(String name, String desc) { 37 super(name, "junctionchecker.png", desc, Cursor.getPredefinedCursor(Cursor.CROSSHAIR_CURSOR)); 38 38 } 39 39 -
applications/editors/josm/plugins/junctionchecking/src/org/openstreetmap/josm/plugins/JunctionChecker/JunctionCheckerPlugin.java
r32596 r33249 43 43 public JunctionCheckerPlugin(PluginInformation info) { 44 44 super(info); 45 jcMapMode = new JunctionCheckerMapMode( Main.map,"junctionchecking", tr("construct channel digraph and search for junctions"));45 jcMapMode = new JunctionCheckerMapMode("junctionchecking", tr("construct channel digraph and search for junctions")); 46 46 relationproducer = new RelationProducer(this); 47 47 cXMLReaderMK = new ColorSchemeXMLReader(COLORSCHEMEFILTERFILE);
Note:
See TracChangeset
for help on using the changeset viewer.