Changeset 16409 in osm for applications/editors/josm/plugins/validator
- Timestamp:
- 2009-07-09T14:36:03+02:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/validator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/build.xml
r16294 r16409 26 26 <attribute name="Plugin-Description" value="An OSM data validator. It checks for problems in data, and provides fixes for the common ones. Spellcheck integrated for tag names."/> 27 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Validator"/> 28 <attribute name="Plugin-Mainversion" value="17 25"/>28 <attribute name="Plugin-Mainversion" value="1755"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/ErrorLayer.java
r13497 r16409 132 132 */ 133 133 public void layerRemoved(Layer oldLayer) { 134 if (oldLayer == Main.map.mapView. editLayer) {134 if (oldLayer == Main.map.mapView.getEditLayer()) { 135 135 Main.map.mapView.removeLayer(this); 136 136 } else if (oldLayer == this) {
Note:
See TracChangeset
for help on using the changeset viewer.