Changeset 17707 in osm for applications/editors/josm/plugins/osmarender
- Timestamp:
- 2009-09-20T11:17:58+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
r17518 r17707 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="2 067"/>28 <attribute name="Plugin-Mainversion" value="2166"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java
r17518 r17707 60 60 } 61 61 } 62 for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV. data)) {62 for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV.getData())) { 63 63 if (p instanceof Way) { 64 64 for (Node n : ((Way) p).getNodes()) { 65 65 if (n.getCoor().isWithin(b)) 66 backRefsV. data.add(n);66 backRefsV.getData().add(n); 67 67 } 68 68 } 69 69 } 70 for (OsmPrimitive p : backRefsV. data)70 for (OsmPrimitive p : backRefsV.getData()) 71 71 fromDataSet.addPrimitive(p); 72 72
Note:
See TracChangeset
for help on using the changeset viewer.