Changeset 17379 in osm for applications/editors/josm


Ignore:
Timestamp:
2009-08-30T18:18:41+02:00 (15 years ago)
Author:
guggis
Message:

Cleanup of deprecated data API

Location:
applications/editors/josm/plugins/osmarender
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/osmarender/build.xml

    r16623 r17379  
    2626                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    2727                <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"/>
    2929                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3030            </manifest>
  • applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java

    r16623 r17379  
    6363            for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV.data)) {
    6464                if (p instanceof Way) {
    65                     for (Node n : ((Way) p).nodes) {
     65                    for (Node n : ((Way) p).getNodes()) {
    6666                        if (n.getCoor().isWithin(b))
    6767                            backRefsV.data.add(n);
Note: See TracChangeset for help on using the changeset viewer.