Changeset 18490 in osm for applications/editors
- Timestamp:
- 2009-11-07T14:48:41+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/surveyor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/surveyor/build.xml
r18427 r18490 37 37 <attribute name="Plugin-Description" value="Allow adding markers/nodes on current gps positions."/> 38 38 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Surveyor"/> 39 <attribute name="Plugin-Mainversion" value="23 88"/>39 <attribute name="Plugin-Mainversion" value="2396"/> 40 40 <attribute name="Plugin-Requires" value="livegps"/> 41 41 <attribute name="Plugin-Stage" value="60"/> -
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/AutoSaveEditLayerTimerTask.java
r16409 r18490 21 21 import org.openstreetmap.josm.gui.layer.OsmDataLayer; 22 22 import org.openstreetmap.josm.io.OsmWriter; 23 import org.openstreetmap.josm.io.XmlWriter;24 23 25 24 /** … … 55 54 System.out.println("AutoSaving osm data to file " + file.getAbsolutePath()); 56 55 synchronized(LiveGpsLock.class) { 57 OsmWriter w = new OsmWriter(new PrintWriter(new FileOutputStream(tmpFile)), false, dataset. version);56 OsmWriter w = new OsmWriter(new PrintWriter(new FileOutputStream(tmpFile)), false, dataset.getVersion()); 58 57 w.header(); 59 58 w.writeDataSources(dataset);
Note:
See TracChangeset
for help on using the changeset viewer.