Changeset 33249 in osm for applications/editors/josm/plugins/junctionchecking/src/org
- Timestamp:
- 2017-04-17T01:13:55+02:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/junctionchecking/src/org/openstreetmap/josm/plugins/JunctionChecker
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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.