Changeset 968 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2008-09-14T17:09:29+02:00 (16 years ago)
Author:
stoecker
Message:

added history information - closes #1546 - patch by mail _ ulfm.de

Location:
trunk/src/org/openstreetmap/josm
Files:
1 added
1 edited

Legend:

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

    r858 r968  
    2828import org.openstreetmap.josm.actions.GpxExportAction;
    2929import org.openstreetmap.josm.actions.HelpAction;
     30import org.openstreetmap.josm.actions.HistoryInfoAction;
    3031import org.openstreetmap.josm.actions.JoinNodeWayAction;
    3132import org.openstreetmap.josm.actions.JosmAction;
     
    117118        public final HelpAction help = new HelpAction();
    118119        public final JosmAction about = new AboutAction();
     120        public final HistoryInfoAction historyinfo = new HistoryInfoAction();
    119121       
    120122        public final JMenu fileMenu = new JMenu(tr("File"));
     
    269271                current = helpMenu.add(about);
    270272                current.setAccelerator(about.shortCut);
     273                current = helpMenu.add(historyinfo);
     274                current.setAccelerator(historyinfo.shortCut);
    271275                add(helpMenu);
    272276    }
Note: See TracChangeset for help on using the changeset viewer.