Changeset 25826 in osm for applications/editors/josm


Ignore:
Timestamp:
2011-04-11T16:55:26+02:00 (14 years ago)
Author:
hind
Message:

CommandLine: Small bugfix in GPS-tracks transfering.

Location:
applications/editors/josm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java

    r25179 r25826  
    323323                                }
    324324                                ImageryInfo info = ((ImageryLayer)layer).getInfo();
    325                                 String url = info.getUrl();
     325                                String url = info.getURL();
    326326                                String itype = info.getImageryType().getUrlString();
    327327                                loadParameter((url.equals("") ? itype : url), true);
     
    431431                setMode(Mode.PROCESSING);
    432432                String commandToRun = currentCommand.run;
     433                final boolean tracks = currentCommand.tracks;
    433434
    434435                for (Parameter parameter : currentCommand.parameters) {
     
    535536                                        osmWriter.flush();
    536537                                }
    537                                 if (currentCommand.tracks) {
     538                                if (tracks) {
    538539                                        final GpxWriter gpxWriter = new GpxWriter(printWriter);
    539540                                        GpxFilter gpxFilter = new GpxFilter();
Note: See TracChangeset for help on using the changeset viewer.