Changeset 16623 in osm for applications/editors/josm/plugins/osmarender
- Timestamp:
- 2009-07-21T20:37:54+02:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/osmarender
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/osmarender/build.xml
r16239 r16623 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="1 638"/>28 <attribute name="Plugin-Mainversion" value="1815"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java
r16163 r16623 52 52 } 53 53 54 CollectBackReferencesVisitor backRefsV = new CollectBackReferencesVisitor(Main. ds, true);54 CollectBackReferencesVisitor backRefsV = new CollectBackReferencesVisitor(Main.main.getCurrentDataSet(), true); 55 55 DataSet fromDataSet = new DataSet(); 56 for (Node n : Main. ds.nodes) {56 for (Node n : Main.main.getCurrentDataSet().nodes) { 57 57 if (n.deleted || n.incomplete) continue; 58 58 if (n.getCoor().isWithin(b)) {
Note:
See TracChangeset
for help on using the changeset viewer.