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

fix help topics

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.