Changeset 27551 in osm for applications/editors
- Timestamp:
- 2012-01-22T12:29:02+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/src/CommandLine/AnyAction.java
r25052 r27551 130 130 if (!Main.isDisplayingMapView()) 131 131 return; 132 nearestPrimitive = Main.map.mapView.getNearest (mousePos, OsmPrimitive.isUsablePredicate); // Deprecated132 nearestPrimitive = Main.map.mapView.getNearestNodeOrWay(mousePos, OsmPrimitive.isUsablePredicate, false); 133 133 if (nearestPrimitive != null) { 134 134 setCursor(cursorActive); -
applications/editors/josm/plugins/build.xml
r27381 r27551 32 32 <ant antfile="build.xml" target="dist" dir="gpxfilter"/> 33 33 <ant antfile="build.xml" target="dist" dir="graphview"/> 34 <ant antfile="build.xml" target="dist" dir="HouseNumberTaggingTool"/> 34 35 <ant antfile="build.xml" target="dist" dir="imageryadjust"/> 35 36 <ant antfile="build.xml" target="dist" dir="imagery-xml-bounds"/> … … 37 38 <ant antfile="build.xml" target="dist" dir="ImportImagePlugin"/> 38 39 <ant antfile="build.xml" target="dist" dir="importvec"/> 39 <ant antfile="build.xml" target="dist" dir="ImproveWayAccuracy"/>40 40 <ant antfile="build.xml" target="dist" dir="infomode"/> 41 41 <ant antfile="build.xml" target="dist" dir="irsrectify"/> … … 46 46 <ant antfile="build.xml" target="dist" dir="mapdust"/> 47 47 <ant antfile="build.xml" target="dist" dir="measurement"/> 48 <ant antfile="build.xml" target="dist" dir="merge-overlap"/> 48 49 <ant antfile="build.xml" target="dist" dir="michigan_left"/> 49 50 <ant antfile="build.xml" target="dist" dir="multipoly-convert"/> … … 72 73 <ant antfile="build.xml" target="dist" dir="smed"/> 73 74 <ant antfile="build.xml" target="dist" dir="surveyor"/> 75 <ant antfile="build.xml" target="dist" dir="surveyor2"/> 74 76 <ant antfile="build.xml" target="dist" dir="tag2link"/> 75 77 <ant antfile="build.xml" target="dist" dir="tageditor"/> … … 91 93 <target name="build_defect" depends="compile"> 92 94 <ant antfile="build.xml" target="dist" dir="rgisopen"/> 93 <ant antfile="build.xml" target="dist" dir="smed_bfw"/>94 95 <ant antfile="build.xml" target="dist" dir="trustosm"/> 95 96 </target> … … 118 119 <ant antfile="build.xml" target="clean" dir="gpxfilter"/> 119 120 <ant antfile="build.xml" target="clean" dir="graphview"/> 121 <ant antfile="build.xml" target="clean" dir="HouseNumberTaggingTool"/> 120 122 <ant antfile="build.xml" target="clean" dir="imageryadjust"/> 121 123 <ant antfile="build.xml" target="clean" dir="imagery-xml-bounds"/> … … 123 125 <ant antfile="build.xml" target="clean" dir="ImportImagePlugin"/> 124 126 <ant antfile="build.xml" target="clean" dir="importvec"/> 125 <ant antfile="build.xml" target="clean" dir="ImproveWayAccuracy"/>126 127 <ant antfile="build.xml" target="clean" dir="infomode"/> 127 128 <ant antfile="build.xml" target="clean" dir="irsrectify"/> … … 132 133 <ant antfile="build.xml" target="clean" dir="mapdust"/> 133 134 <ant antfile="build.xml" target="clean" dir="measurement"/> 135 <ant antfile="build.xml" target="clean" dir="merge-overlap"/> 134 136 <ant antfile="build.xml" target="clean" dir="michigan_left"/> 135 137 <ant antfile="build.xml" target="clean" dir="multipoly-convert"/> … … 158 160 <ant antfile="build.xml" target="clean" dir="simplifyarea"/> 159 161 <ant antfile="build.xml" target="clean" dir="smed"/> 160 <!--<ant antfile="build.xml" target="clean" dir="smed_bfw"/>-->161 162 <ant antfile="build.xml" target="clean" dir="surveyor"/> 163 <ant antfile="build.xml" target="clean" dir="surveyor2"/> 162 164 <ant antfile="build.xml" target="clean" dir="tag2link"/> 163 165 <ant antfile="build.xml" target="clean" dir="tageditor"/>
Note:
See TracChangeset
for help on using the changeset viewer.