Index: trunk/src/org/openstreetmap/josm/actions/DownloadAlongWayAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/DownloadAlongWayAction.java	(revision 14964)
+++ trunk/src/org/openstreetmap/josm/actions/DownloadAlongWayAction.java	(revision 14965)
@@ -59,17 +59,17 @@
 
         // Convert OSM ways to Path2D
-        Path2D gpxPath = new Path2D.Double();
+        Path2D alongPath = new Path2D.Double();
         for (Way way : selectedWays) {
             boolean first = true;
             for (Node p : way.getNodes()) {
                 if (first) {
-                    gpxPath.moveTo(p.lon(), p.lat());
+                    alongPath.moveTo(p.lon(), p.lat());
                     first = false;
                 } else {
-                    gpxPath.lineTo(p.lon(), p.lat());
+                    alongPath.lineTo(p.lon(), p.lat());
                 }
             }
         }
-        return createCalcTask(gpxPath, panel, tr("Download from OSM along selected ways"));
+        return createCalcTask(alongPath, panel, tr("Download from OSM along selected ways"));
 
     }
