Changeset 9284 in josm for trunk/src/org/openstreetmap/josm/data/osm
- Timestamp:
- 2016-01-03T18:13:45+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java
r9278 r9284 61 61 import org.openstreetmap.josm.gui.mappaint.ElemStyles; 62 62 import org.openstreetmap.josm.gui.mappaint.MapPaintStyles; 63 import org.openstreetmap.josm.gui.mappaint.Style Cache.StyleList;63 import org.openstreetmap.josm.gui.mappaint.StyleElementList; 64 64 import org.openstreetmap.josm.gui.mappaint.mapcss.MapCSSStyleSource; 65 65 import org.openstreetmap.josm.gui.mappaint.mapcss.Selector; … … 1825 1825 1826 1826 public void add(Node osm, int flags) { 1827 StyleList sl = styles.get(osm, circum, nc); 1827 StyleElementList sl = styles.get(osm, circum, nc); 1828 1828 for (StyleElement s : sl) { 1829 1829 output.add(new StyleRecord(s, osm, flags)); … … 1832 1832 1833 1833 public void add(Relation osm, int flags) { 1834 StyleList sl = styles.get(osm, circum, nc); 1834 StyleElementList sl = styles.get(osm, circum, nc); 1835 1835 for (StyleElement s : sl) { 1836 1836 if (drawMultipolygon && drawArea && s instanceof AreaElement && (flags & FLAG_DISABLED) == 0) { … … 1843 1843 1844 1844 public void add(Way osm, int flags) { 1845 StyleList sl = styles.get(osm, circum, nc); 1845 StyleElementList sl = styles.get(osm, circum, nc); 1846 1846 for (StyleElement s : sl) { 1847 1847 if (!(drawArea && (flags & FLAG_DISABLED) == 0) && s instanceof AreaElement) {
Note:
See TracChangeset
for help on using the changeset viewer.