Changeset 23964 in osm for applications
- Timestamp:
 - 2010-10-31T15:22:21+01:00 (15 years ago)
 - Location:
 - applications/editors/josm/plugins/FixAddresses
 - Files:
 - 
      
- 1 added
 - 2 edited
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/FixAddressesPlugin.java
r23951 r23964 31 31 SelectIncompleteAddressesAction incAddrAction = new SelectIncompleteAddressesAction(); 32 32 // ... and add it to the tools menu in main 33 Main.main.menu.toolsMenu.addSeparator(); 33 34 Main.main.menu.toolsMenu.add(action); 34 35 Main.main.menu.toolsMenu.add(incAddrAction);  - 
      
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/SelectIncompleteAddressesAction.java
r23951 r23964 33 33 */ 34 34 public SelectIncompleteAddressesAction() { 35 super(tr("Select incomplete addresses"), null,35 super(tr("Select incomplete addresses"), "select_invaddr_24", 36 36 tr("Selects all addresses with incomplete data."), null, false); 37 37 } … … 52 52 } 53 53 54 /* (non-Javadoc) 55 * @see org.openstreetmap.josm.actions.JosmAction#updateEnabledState() 56 */ 57 @Override 58 protected void updateEnabledState() { 59 setEnabled(getCurrentDataSet() != null); 60 } 54 61 }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  