Ignore:
Timestamp:
2013-06-16T13:52:13+02:00 (12 years ago)
Author:
donvip
Message:

[josm_plugins] see #josm8799 - update plugins fixaddresses, czechaddresses, public_transport to JOSM 6010

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  
    346346      int j = consideredLines.elementAt(i);
    347347      if (nodes.elementAt(j) != null)
    348         nodes.elementAt(j).visit(box);
     348        nodes.elementAt(j).accept(box);
    349349    }
    350350    if (box.getBounds() == null)
  • applications/editors/josm/plugins/public_transport/src/public_transport/RoutePatternAction.java

    r28326 r29661  
    12221222          if ((itineraryTable.isRowSelected(i)) && (itineraryData.ways.elementAt(i) != null))
    12231223          {
    1224             itineraryData.ways.elementAt(i).visit(box);
     1224            itineraryData.ways.elementAt(i).accept(box);
    12251225          }
    12261226        }
     
    12321232          if (itineraryData.ways.elementAt(i) != null)
    12331233          {
    1234             itineraryData.ways.elementAt(i).visit(box);
     1234            itineraryData.ways.elementAt(i).accept(box);
    12351235          }
    12361236        }
     
    15081508          if (stoplistTable.isRowSelected(i))
    15091509          {
    1510             stoplistData.nodes.elementAt(i).visit(box);
     1510            stoplistData.nodes.elementAt(i).accept(box);
    15111511          }
    15121512        }
     
    15161516        for (int i = 0; i < stoplistData.getRowCount(); ++i)
    15171517        {
    1518           stoplistData.nodes.elementAt(i).visit(box);
     1518          stoplistData.nodes.elementAt(i).accept(box);
    15191519        }
    15201520      }
  • applications/editors/josm/plugins/public_transport/src/public_transport/StopImporterAction.java

    r29222 r29661  
    376376      int j = consideredLines.elementAt(i);
    377377      if (nodes.elementAt(j) != null)
    378         nodes.elementAt(j).visit(box);
     378        nodes.elementAt(j).accept(box);
    379379    }
    380380    if (box.getBounds() == null)
Note: See TracChangeset for help on using the changeset viewer.