Changeset 11819 in josm for trunk/src/org/openstreetmap/josm/data/osm/visitor
- Timestamp:
- 2017-04-01T17:30:00+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java
r11779 r11819 363 363 * Worker function for drawing areas. 364 364 * 365 * @param osm the primitive366 365 * @param path the path object for the area that should be drawn; in case 367 366 * of multipolygons, this can path can be a complex shape with one outer … … 377 376 * @param text Ignored. Use {@link #drawText(OsmPrimitive, TextLabel)} instead. 378 377 */ 379 protected void drawArea( OsmPrimitive osm,MapViewPath path, Color color,378 protected void drawArea(MapViewPath path, Color color, 380 379 MapImage fillImage, Float extent, Path2D.Double pfClip, boolean disabled, TextLabel text) { 381 380 if (!isOutlineOnly && color.getAlpha() != 0) { … … 458 457 } 459 458 } 460 drawArea( r,p,459 drawArea(p, 461 460 pd.isSelected() ? paintSettings.getRelationSelectedColor(color.getAlpha()) : color, 462 461 fillImage, extent, pfClip, disabled, text); … … 487 486 } 488 487 } 489 drawArea( w,getPath(w), color, fillImage, extent, pfClip, disabled, text);488 drawArea(getPath(w), color, fillImage, extent, pfClip, disabled, text); 490 489 } 491 490
Note:
See TracChangeset
for help on using the changeset viewer.