Changeset 17379 in osm for applications/editors/josm/plugins/osmarender
- Timestamp:
- 2009-08-30T18:18:41+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/osmarender
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/osmarender/build.xml
r16623 r17379 26 26 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 27 27 <attribute name="Plugin-Description" value="Launches FireFox to display the current visible screen as a nice SVG image."/> 28 <attribute name="Plugin-Mainversion" value=" 1815"/>28 <attribute name="Plugin-Mainversion" value="2012"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java
r16623 r17379 63 63 for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV.data)) { 64 64 if (p instanceof Way) { 65 for (Node n : ((Way) p). nodes) {65 for (Node n : ((Way) p).getNodes()) { 66 66 if (n.getCoor().isWithin(b)) 67 67 backRefsV.data.add(n);
Note:
See TracChangeset
for help on using the changeset viewer.