Index: trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java	(revision 11026)
+++ trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java	(revision 11027)
@@ -63,5 +63,4 @@
 import org.openstreetmap.josm.gui.MapViewState.MapViewPoint;
 import org.openstreetmap.josm.gui.NavigatableComponent;
-import org.openstreetmap.josm.gui.draw.MapPath2D;
 import org.openstreetmap.josm.gui.draw.MapViewPath;
 import org.openstreetmap.josm.gui.mappaint.ElemStyles;
@@ -1423,8 +1422,8 @@
             boolean showOneway, boolean onewayReversed) {
 
-        MapPath2D path = new MapPath2D();
-        MapPath2D orientationArrows = showOrientation ? new MapPath2D() : null;
-        MapPath2D onewayArrows = showOneway ? new MapPath2D() : null;
-        MapPath2D onewayArrowsCasing = showOneway ? new MapPath2D() : null;
+        MapViewPath path = new MapViewPath(mapState);
+        MapViewPath orientationArrows = showOrientation ? new MapViewPath(mapState) : null;
+        MapViewPath onewayArrows = showOneway ? new MapViewPath(mapState) : null;
+        MapViewPath onewayArrowsCasing = showOneway ? new MapViewPath(mapState) : null;
         Rectangle bounds = g.getClipBounds();
         if (bounds != null) {
