Ignore:
Timestamp:
26.10.2009 15:23:39 (3 years ago)
Author:
Gubaer
Message:

Added explicit help topics
See also current list of help topics with links to source files and to help pages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/DownloadAction.java

    r2322 r2323  
    33 
    44import static org.openstreetmap.josm.tools.I18n.tr; 
     5import static org.openstreetmap.josm.gui.help.HelpUtil.ht; 
    56 
    67import java.awt.BorderLayout; 
     
    89import java.awt.event.ActionEvent; 
    910import java.awt.event.KeyEvent; 
    10 import java.util.List; 
    1111import java.util.concurrent.Future; 
    1212 
     
    1717import org.openstreetmap.josm.actions.downloadtasks.DownloadTask; 
    1818import org.openstreetmap.josm.actions.downloadtasks.PostDownloadHandler; 
    19 import org.openstreetmap.josm.gui.ExceptionDialogUtil; 
    2019import org.openstreetmap.josm.gui.ExtendedDialog; 
    2120import org.openstreetmap.josm.gui.download.DownloadDialog; 
    22 import org.openstreetmap.josm.tools.ExceptionUtil; 
    2321import org.openstreetmap.josm.tools.Shortcut; 
    2422import org.openstreetmap.josm.tools.WindowGeometry; 
     
    3937        super(tr("Download from OSM..."), "download", tr("Download map data from the OSM server."), 
    4038                Shortcut.registerShortcut("file:download", tr("File: {0}", tr("Download from OSM...")), KeyEvent.VK_D, Shortcut.GROUPS_ALT1+Shortcut.GROUP_HOTKEY), true); 
     39        putValue("help", ht("/Action/Download")); 
    4140    } 
    4241 
Note: See TracChangeset for help on using the changeset viewer.