Changeset 6649 in josm
- Timestamp:
- 2014-01-06T18:57:29+01:00 (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/validator/highway.mapcss
r6637 r6649 54 54 55 55 way.major_road[foot?][!sidewalk] { 56 throwWarning: tr(" {0} used with {1}", tr("major road"), "{0.tag}");56 throwWarning: tr("major road used with {0}", "{0.tag}"); 57 57 suggestAlternative: "sidewalk"; 58 58 suggestAlternative: tr("separate footway"); -
trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java
r6636 r6649 337 337 final String description = getDescriptionForMatchingSelector(matchingSelector); 338 338 if (fix != null) { 339 return new FixableTestError(null, getSeverity(), description, 3000, p, fix);339 return new FixableTestError(null, getSeverity(), description, description, matchingSelector.toString(), 3000, p, fix); 340 340 } else { 341 return new TestError(null, getSeverity(), description, 3000, p);341 return new TestError(null, getSeverity(), description, description, matchingSelector.toString(), 3000, p); 342 342 } 343 343 } else {
Note:
See TracChangeset
for help on using the changeset viewer.