Changeset 34639 in osm for applications


Ignore:
Timestamp:
2018-09-13T00:06:20+02:00 (6 years ago)
Author:
donvip
Message:

update to JOSM 14221

Location:
applications/editors/josm/plugins/ColumbusCSV
Files:
3 edited

Legend:

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

    r34496 r34639  
    44    <property name="commit.message" value="Commit message"/>
    55    <!-- Enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="14153"/>
     6    <property name="plugin.main.version" value="14221"/>
    77   
    88    <!-- Plugin meta data -->
  • applications/editors/josm/plugins/ColumbusCSV/src/org/openstreetmap/josm/plugins/columbusCSV/ColumbusCSVImporter.java

    r34496 r34639  
    88
    99import org.openstreetmap.josm.actions.AutoScaleAction;
     10import org.openstreetmap.josm.actions.AutoScaleAction.AutoScaleMode;
    1011import org.openstreetmap.josm.actions.ExtensionFileFilter;
    1112import org.openstreetmap.josm.data.gpx.GpxData;
     
    8485                // ... and scale view appropriately - if wished by user
    8586                if (ColumbusCSVPreferences.zoomAfterImport()) {
    86                     AutoScaleAction action = new AutoScaleAction("data");
     87                    AutoScaleAction action = new AutoScaleAction(AutoScaleMode.DATA);
    8788                    action.autoScale();
    8889                }
  • applications/editors/josm/plugins/ColumbusCSV/src/org/openstreetmap/josm/plugins/columbusCSV/ColumbusCSVReader.java

    r34496 r34639  
    9999     * @return GPX representation of Columbus track file.
    100100     * @throws IOException
    101      * @throws DataFormatException
     101     * @throws IllegalDataException
    102102     */
    103103    public GpxData transformColumbusCSV(String fileName) throws IOException, IllegalDataException {
Note: See TracChangeset for help on using the changeset viewer.