Ignore:
Timestamp:
27.01.2010 22:21:17 (2 years ago)
Author:
mjulius
Message:

new action: DownloadUrlAction
This opens a dialog to allow the user to enter a URL to download OSM data from.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MainMenu.java

    r2689 r2899  
    3030import org.openstreetmap.josm.actions.DownloadAction; 
    3131import org.openstreetmap.josm.actions.DownloadReferrersAction; 
     32import org.openstreetmap.josm.actions.DownloadUrlAction; 
    3233import org.openstreetmap.josm.actions.DuplicateAction; 
    3334import org.openstreetmap.josm.actions.ExitAction; 
     
    100101    public final JosmAction gpxExport = new GpxExportAction(); 
    101102    public final DownloadAction download = new DownloadAction(); 
     103    public final DownloadUrlAction downloadUrl = new DownloadUrlAction(); 
    102104    public final DownloadReferrersAction downloadReferrers = new DownloadReferrersAction(); 
    103105    public final CloseChangesetAction closeChangesetAction = new CloseChangesetAction(); 
     
    210212        fileMenu.addSeparator(); 
    211213        add(fileMenu, download); 
     214        add(fileMenu, downloadUrl); 
    212215        add(fileMenu, downloadReferrers); 
    213216        add(fileMenu, update); 
Note: See TracChangeset for help on using the changeset viewer.