Changeset 12282 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2017-05-31T02:30:29+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/OsmValidator.java
r11852 r12282 26 26 27 27 import org.openstreetmap.josm.Main; 28 import org.openstreetmap.josm.actions.ValidateAction;29 28 import org.openstreetmap.josm.data.validation.tests.Addresses; 30 29 import org.openstreetmap.josm.data.validation.tests.ApiCapabilitiesTest; … … 76 75 77 76 private static volatile ValidatorLayer errorLayer; 78 79 /** The validate action */80 public static final ValidateAction validateAction = new ValidateAction();81 77 82 78 /** Grid detail, multiplier of east,north values for valuable cell sizing */ -
trunk/src/org/openstreetmap/josm/gui/dialogs/ValidatorDialog.java
r12129 r12282 31 31 import org.openstreetmap.josm.actions.AbstractSelectAction; 32 32 import org.openstreetmap.josm.actions.AutoScaleAction; 33 import org.openstreetmap.josm.actions.ValidateAction; 33 34 import org.openstreetmap.josm.actions.relation.EditRelationAction; 34 35 import org.openstreetmap.josm.command.Command; … … 71 72 public ValidatorTreePanel tree; 72 73 74 /** The validate action */ 75 public static final ValidateAction validateAction = new ValidateAction(); 76 73 77 /** The fix button */ 74 78 private final SideButton fixButton; … … 134 138 buttons.add(lookupButton); 135 139 136 buttons.add(new SideButton( OsmValidator.validateAction));140 buttons.add(new SideButton(validateAction)); 137 141 138 142 fixButton = new SideButton(new AbstractAction() {
Note:
See TracChangeset
for help on using the changeset viewer.