Changeset 32464 in osm for applications/editors/josm/plugins/surveyor
- Timestamp:
- 2016-06-30T19:58:32+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/AutoSaveEditLayerTimerTask.java
r30145 r32464 34 34 @Override 35 35 public void run() { 36 OsmDataLayer layer = Main. main.getEditLayer();36 OsmDataLayer layer = Main.getLayerManager().getEditLayer(); 37 37 if (layer == null) { 38 38 return; -
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/action/SetNodeAction.java
r30737 r32464 63 63 } 64 64 synchronized(SurveyorLock.class) { 65 DataSet ds = Main. main.getCurrentDataSet();65 DataSet ds = Main.getLayerManager().getEditDataSet(); 66 66 if(ds != null) 67 67 { -
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/action/SetWaypointAction.java
r32329 r32464 113 113 // not found, add a new one 114 114 markerLayer = new MarkerLayer(new GpxData(), MARKER_LAYER_NAME, null, null); 115 Main. main.addLayer(markerLayer);115 Main.getLayerManager().addLayer(markerLayer); 116 116 } 117 117 }
Note:
See TracChangeset
for help on using the changeset viewer.