Changeset 23920 in osm for applications/editors/josm
- Timestamp:
- 2010-10-30T17:13:11+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/AddressEdit/src/org/openstreetmap/josm/plugins/addressEdit
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/AddressEdit/src/org/openstreetmap/josm/plugins/addressEdit/AddressEditPlugin.java
r23919 r23920 28 28 29 29 // Create action for edit... 30 Fix edUnresolvedStreetsAction action = new FixedUnresolvedStreetsAction();30 FixUnresolvedStreetsAction action = new FixUnresolvedStreetsAction(); 31 31 // ... and add it to the tools menu in main 32 32 Main.main.menu.toolsMenu.add(action); -
applications/editors/josm/plugins/AddressEdit/src/org/openstreetmap/josm/plugins/addressEdit/FixUnresolvedStreetsAction.java
r23919 r23920 21 21 */ 22 22 23 public class Fix edUnresolvedStreetsAction extends JosmAction implements SelectionChangedListener {23 public class FixUnresolvedStreetsAction extends JosmAction implements SelectionChangedListener { 24 24 25 25 /** … … 30 30 private Collection<? extends OsmPrimitive> newSelection; 31 31 32 public Fix edUnresolvedStreetsAction() {32 public FixUnresolvedStreetsAction() { 33 33 super(tr("Fix street addresses"), "fixstreets_24", 34 34 tr("Find and fix addresses without (valid) streets."), Shortcut
Note:
See TracChangeset
for help on using the changeset viewer.