Changeset 29525 in osm for applications/editors/josm/plugins
- Timestamp:
- 2013-04-21T15:15:09+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 6 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); -
applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/GraphViewPlugin.java
r26481 r29525 252 252 } else if (oldLayer == Main.map.mapView.getEditLayer()) { //data layer removed 253 253 if (graphViewLayer != null) { 254 Main.ma p.mapView.removeLayer(graphViewLayer);254 Main.main.removeLayer(graphViewLayer); 255 255 graphViewLayer = null; 256 256 } -
applications/editors/josm/plugins/junctionchecking/src/org/openstreetmap/josm/plugins/JunctionChecker/DigraphCreationTask.java
r25501 r29525 55 55 protected void finish() { 56 56 if (canceled) { 57 Main.ma p.mapView.removeLayer(plugin.getChannelDigraphLayer());57 Main.main.removeLayer(plugin.getChannelDigraphLayer()); 58 58 return; 59 59 } -
applications/editors/josm/plugins/mapdust/src/org/openstreetmap/josm/plugins/mapdust/MapdustPlugin.java
r28630 r29525 452 452 MapdustPluginState.ONLINE.getValue()); 453 453 NavigatableComponent.removeZoomChangeListener(this); 454 Main.ma p.mapView.removeLayer(layer);454 Main.main.removeLayer(layer); 455 455 if (mapdustGUI != null) { 456 456 Main.map.remove(mapdustGUI); -
applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/RoutingPlugin.java
r28624 r29525 270 270 try { 271 271 // Remove layer 272 Main.ma p.mapView.removeLayer(layersArray[i]);272 Main.main.removeLayer(layersArray[i]); 273 273 } catch (IllegalArgumentException e) { 274 274 }
Note:
See TracChangeset
for help on using the changeset viewer.