Changeset 17078 in josm
- Timestamp:
- 2020-10-01T00:28:28+02:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/LatLonDialog.java
r16971 r17078 231 231 private class LatLonValidator extends AbstractTextComponentValidator { 232 232 LatLonValidator(JTextComponent tc) { 233 super(tc );233 super(tc, false); 234 234 } 235 235 … … 265 265 private class EastNorthValidator extends AbstractTextComponentValidator { 266 266 EastNorthValidator(JTextComponent tc) { 267 super(tc );267 super(tc, false); 268 268 } 269 269 -
trunk/src/org/openstreetmap/josm/gui/widgets/AbstractTextComponentValidator.java
r16919 r17078 33 33 * </ul> 34 34 * 35 * 35 * @since 2688 36 36 */ 37 37 public abstract class AbstractTextComponentValidator implements ActionListener, FocusListener, DocumentListener, PropertyChangeListener {
Note:
See TracChangeset
for help on using the changeset viewer.