Changeset 5544 in josm for trunk/src/org
- Timestamp:
- 2012-10-31T09:23:53+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/widgets/BoundingBoxSelectionPanel.java
r4380 r5544 107 107 double minlon, minlat, maxlon,maxlat; 108 108 try { 109 minl on= Double.parseDouble(tfLatLon[0].getText().trim());110 minl at= Double.parseDouble(tfLatLon[1].getText().trim());111 maxl on= Double.parseDouble(tfLatLon[2].getText().trim());112 maxl at= Double.parseDouble(tfLatLon[3].getText().trim());109 minlat = Double.parseDouble(tfLatLon[0].getText().trim()); 110 minlon = Double.parseDouble(tfLatLon[1].getText().trim()); 111 maxlat = Double.parseDouble(tfLatLon[2].getText().trim()); 112 maxlon = Double.parseDouble(tfLatLon[3].getText().trim()); 113 113 } catch(NumberFormatException e) { 114 114 return null;
Note:
See TracChangeset
for help on using the changeset viewer.