Ignore:
Timestamp:
2009-09-20T11:17:58+02:00 (15 years ago)
Author:
stoecker
Message:

some fixes for josm 2166

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

Legend:

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

    r17518 r17707  
    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="2067"/>
     28                <attribute name="Plugin-Mainversion" value="2166"/>
    2929                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3030            </manifest>
  • applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java

    r17518 r17707  
    6060                }
    6161            }
    62             for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV.data)) {
     62            for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV.getData())) {
    6363                if (p instanceof Way) {
    6464                    for (Node n : ((Way) p).getNodes()) {
    6565                        if (n.getCoor().isWithin(b))
    66                             backRefsV.data.add(n);
     66                            backRefsV.getData().add(n);
    6767                    }
    6868                }
    6969            }
    70             for (OsmPrimitive p : backRefsV.data)
     70            for (OsmPrimitive p : backRefsV.getData())
    7171                fromDataSet.addPrimitive(p);
    7272
Note: See TracChangeset for help on using the changeset viewer.