Changeset 3256 in josm for trunk/src/org
- Timestamp:
- 2010-05-15T22:10:06+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/download/PlaceSelection.java
r3255 r3256 230 230 currentResult.name = atts.getValue("display_name"); 231 231 currentResult.description = currentResult.name; 232 currentResult.info = tr(atts.getValue("class")); 232 currentResult.info = atts.getValue("class"); 233 if (currentResult.info != null) { 234 currentResult.info = tr(currentResult.info); 235 } 233 236 currentResult.nearestPlace = tr(atts.getValue("type")); 234 237 currentResult.lat = Double.parseDouble(atts.getValue("lat"));
Note:
See TracChangeset
for help on using the changeset viewer.