Changeset 16290 in osm for applications/editors/josm/plugins/validator
- Timestamp:
- 2009-07-03T12:34:14+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/validator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/build.xml
r16159 r16290 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="1 638"/>28 <attribute name="Plugin-Mainversion" value="1722"/> 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/ValidatorDialog.java
r13497 r16290 262 262 ValidatorBoundingXYVisitor bbox = new ValidatorBoundingXYVisitor(); 263 263 popupMenuError.visitHighlighted(bbox); 264 if (bbox. min == null || bbox.max== null)264 if (bbox.getBounds() == null) 265 265 return; 266 266 bbox.enlargeBoundingBox();
Note:
See TracChangeset
for help on using the changeset viewer.