Changeset 2546 in josm
- Timestamp:
- 2009-11-29T13:28:43+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/AddNodeAction.java
r2545 r2546 233 233 protected Double parseLonFromUserInput() { 234 234 Double d = parseDoubleFromUserInput(tfLon.getText()); 235 if (d == null || ! LatLon.isValidL at(d)) {235 if (d == null || ! LatLon.isValidLon(d)) { 236 236 setErrorFeedback(tfLon, tr("Please enter a valid longitude in the range -180..180")); 237 237 return null;
Note:
See TracChangeset
for help on using the changeset viewer.