Changeset 34076 in osm for applications/editors/josm/plugins/imagery-xml-bounds/src/org
- Timestamp:
- 2018-02-20T21:01:27+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/downloadtask/DownloadXmlBoundsTask.java
r33830 r34076 70 70 71 71 @Override 72 protected int getNumDataLayers() {73 intcount = 0;72 protected long getNumModifiableDataLayers() { 73 long count = 0; 74 74 if (!MainApplication.isDisplayingMapView()) return 0; 75 75 for (Layer layer : MainApplication.getLayerManager().getLayers()) { … … 82 82 83 83 @Override 84 protected OsmDataLayer getFirst DataLayer() {84 protected OsmDataLayer getFirstModifiableDataLayer() { 85 85 if (!MainApplication.isDisplayingMapView()) return null; 86 86 for (Layer layer : MainApplication.getLayerManager().getLayers()) {
Note:
See TracChangeset
for help on using the changeset viewer.