Changeset 3758 in josm


Ignore:
Timestamp:
2011-01-02T00:45:12+01:00 (13 years ago)
Author:
stoecker
Message:

fix help topics

Location:
trunk/src/org/openstreetmap/josm
Files:
2 edited

Legend:

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

    r3757 r3758  
    139139                    tr("Warning"),
    140140                    JOptionPane.WARNING_MESSAGE,
    141                     HelpUtil.ht("/Action/OpenFile#ImporterCantImportFiles")
     141                    HelpUtil.ht("/Action/Open#ImporterCantImportFiles")
    142142            );
    143143        }
     
    165165                    tr("Warning"),
    166166                    JOptionPane.WARNING_MESSAGE,
    167                     HelpUtil.ht("/Action/OpenFile#MissingImporterForFiles")
     167                    HelpUtil.ht("/Action/Open#MissingImporterForFiles")
    168168            );
    169169        }
  • trunk/src/org/openstreetmap/josm/gui/io/RecentlyOpenedFilesMenu.java

    r3710 r3758  
    22package org.openstreetmap.josm.gui.io;
    33
     4import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
    45import static org.openstreetmap.josm.tools.I18n.tr;
    56
     
    2930        setToolTipText(tr("List of recently opened files"));
    3031        setIcon(ImageProvider.get("openrecent.png"));
     32        putClientProperty("help", ht("/Action/OpenRecent"));
    3133
    3234        // build dynamically
     
    5557                {
    5658                    putValue(NAME, file);
     59                    putValue("help", ht("/Action/OpenRecent"));
    5760                }
    5861                @Override
     
    7982            super(tr("Clear"));
    8083            putValue(SHORT_DESCRIPTION, tr("Clear the list of recently opened files"));
     84            putValue("help", ht("/Action/OpenRecent"));
    8185        }
    8286
Note: See TracChangeset for help on using the changeset viewer.