Ignore:
Timestamp:
2013-01-31T14:39:51+01:00 (12 years ago)
Author:
bastik
Message:

adapt to changes in JOSM core ([josm5679] and [josm5681])

Location:
applications/editors/josm/plugins/public_transport
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/public_transport/build.xml

    r28318 r29222  
    1717<project name="public_transport" default="dist" basedir=".">
    1818    <property name="josm.basedir" location="../.."/>
     19    <property name="plugin.main.version" value="5679"/>
    1920    <!--
    2021      ************************************************
    2122      ** should not be necessary to change the following properties
    2223     -->
    23     <property name="plugin.main.version" value="5053"/>
    2424    <property name="josm" location="${josm.basedir}/core/dist/josm-custom.jar"/>
    2525    <property name="plugin.build.dir" value="build"/>
  • applications/editors/josm/plugins/public_transport/src/public_transport/StopImporterAction.java

    r26509 r29222  
    209209      final GpxReader r = new GpxReader(is);
    210210      final boolean parsedProperly = r.parse(true);
    211       data = r.data;
     211      data = r.getGpxData();
    212212
    213213      if (!parsedProperly)
Note: See TracChangeset for help on using the changeset viewer.