Changeset 30203 in osm
- Timestamp:
- 2014-01-15T23:44:24+01:00 (11 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/build.xml
r29854 r30203 4 4 <property name="commit.message" value="JOSM/CommandLine: fix exception after JOSM update"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="6 162"/>6 <property name="plugin.main.version" value="6690"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java
r29819 r30203 335 335 ImageryInfo info = ((ImageryLayer)layer).getInfo(); 336 336 String url = info.getUrl(); 337 String itype = info.getImageryType().get UrlString();337 String itype = info.getImageryType().getTypeString(); 338 338 loadParameter((url.equals("") ? itype : url), true); 339 339 action = new DummyAction(currentMapFrame, this); … … 484 484 // redirect child process's stderr to JOSM stderr 485 485 new Thread(new Runnable() { 486 @Override 486 487 public void run() { 487 488 try { … … 502 503 // Write stdin stream 503 504 Thread osmWriteThread = new Thread(new Runnable() { 505 @Override 504 506 public void run() { 505 507 BBox bbox = null; … … 571 573 final CommandLine that = this; 572 574 Thread osmParseThread = new Thread(new Runnable() { 575 @Override 573 576 public void run() { 574 577 try { -
applications/editors/josm/plugins/imagery-xml-bounds/build.xml
r29854 r30203 4 4 <property name="commit.message" value="Commit message"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="6 162"/>6 <property name="plugin.main.version" value="6690"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/data/XmlBoundsConverter.java
r27015 r30203 128 128 129 129 safePut(osmImagery, KEY_NAME, imagery.getName()); 130 safePut(osmImagery, KEY_TYPE, imagery.getImageryType().get UrlString());130 safePut(osmImagery, KEY_TYPE, imagery.getImageryType().getTypeString()); 131 131 safePut(osmImagery, KEY_DEFAULT, imagery.isDefaultEntry()); 132 132 safePut(osmImagery, KEY_URL, imagery.getUrl());
Note:
See TracChangeset
for help on using the changeset viewer.