Changeset 29661 in osm for applications/editors/josm/plugins/public_transport/src
- Timestamp:
- 2013-06-16T13:52:13+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/public_transport/src/public_transport
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/public_transport/src/public_transport/GTFSImporterAction.java
r26168 r29661 346 346 int j = consideredLines.elementAt(i); 347 347 if (nodes.elementAt(j) != null) 348 nodes.elementAt(j). visit(box);348 nodes.elementAt(j).accept(box); 349 349 } 350 350 if (box.getBounds() == null) -
applications/editors/josm/plugins/public_transport/src/public_transport/RoutePatternAction.java
r28326 r29661 1222 1222 if ((itineraryTable.isRowSelected(i)) && (itineraryData.ways.elementAt(i) != null)) 1223 1223 { 1224 itineraryData.ways.elementAt(i). visit(box);1224 itineraryData.ways.elementAt(i).accept(box); 1225 1225 } 1226 1226 } … … 1232 1232 if (itineraryData.ways.elementAt(i) != null) 1233 1233 { 1234 itineraryData.ways.elementAt(i). visit(box);1234 itineraryData.ways.elementAt(i).accept(box); 1235 1235 } 1236 1236 } … … 1508 1508 if (stoplistTable.isRowSelected(i)) 1509 1509 { 1510 stoplistData.nodes.elementAt(i). visit(box);1510 stoplistData.nodes.elementAt(i).accept(box); 1511 1511 } 1512 1512 } … … 1516 1516 for (int i = 0; i < stoplistData.getRowCount(); ++i) 1517 1517 { 1518 stoplistData.nodes.elementAt(i). visit(box);1518 stoplistData.nodes.elementAt(i).accept(box); 1519 1519 } 1520 1520 } -
applications/editors/josm/plugins/public_transport/src/public_transport/StopImporterAction.java
r29222 r29661 376 376 int j = consideredLines.elementAt(i); 377 377 if (nodes.elementAt(j) != null) 378 nodes.elementAt(j). visit(box);378 nodes.elementAt(j).accept(box); 379 379 } 380 380 if (box.getBounds() == null)
Note:
See TracChangeset
for help on using the changeset viewer.