Changeset 26509 in osm for applications/editors/josm/plugins/junctionchecking
- Timestamp:
- 2011-08-11T00:45:56+02:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/junctionchecking
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/junctionchecking/build.xml
r26174 r26509 27 27 <project name="junctionchecking" default="dist" basedir="."> 28 28 <property name="commit.message" value="Changed the constructor signature of the plugin main class"/> 29 <property name="plugin.main.version" value=" 3751"/>29 <property name="plugin.main.version" value="4126"/> 30 30 <property name="josm" location="../../core/dist/josm-custom.jar"/> 31 31 <property name="plugin.build.dir" value="build"/> -
applications/editors/josm/plugins/junctionchecking/src/org/openstreetmap/josm/plugins/JunctionChecker/ChannelDiGraphLayer.java
r25501 r26509 150 150 151 151 private Point getCoord(OSMNode node, MapView mv) { 152 return mv.getPoint(Main. proj.latlon2eastNorth(new LatLon(node.getLatitude(), node.getLongitude())));152 return mv.getPoint(Main.getProjection().latlon2eastNorth(new LatLon(node.getLatitude(), node.getLongitude()))); 153 153 } 154 154
Note:
See TracChangeset
for help on using the changeset viewer.