Changeset 29525 in osm for applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr
- Timestamp:
- 2013-04-21T15:15:09+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastreInterface.java
r28961 r29525 556 556 System.out.println("Try to grab into a new layer when "+wmsLayer.getName()+" is already opened."); 557 557 // remove the duplicated layer 558 Main.ma p.mapView.removeLayer(wmsLayer);558 Main.main.removeLayer(wmsLayer); 559 559 throw new DuplicateLayerException(); 560 560 } -
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/MenuActionGrabPlanImage.java
r29101 r29525 66 66 actionCompleted(); 67 67 if (wmsLayer != null) { 68 Main.ma p.mapView.removeLayer(wmsLayer);68 Main.main.removeLayer(wmsLayer); 69 69 wmsLayer = null; 70 70 } … … 278 278 if (selectedValue == 0) { // "Cancel" 279 279 // remove layer 280 Main.ma p.mapView.removeLayer(wmsLayer);280 Main.main.removeLayer(wmsLayer); 281 281 wmsLayer = null; 282 282 Main.map.mapView.removeMouseListener(this);
Note:
See TracChangeset
for help on using the changeset viewer.