- Timestamp:
- 2008-09-14T17:09:29+02:00 (16 years ago)
- 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 28 28 import org.openstreetmap.josm.actions.GpxExportAction; 29 29 import org.openstreetmap.josm.actions.HelpAction; 30 import org.openstreetmap.josm.actions.HistoryInfoAction; 30 31 import org.openstreetmap.josm.actions.JoinNodeWayAction; 31 32 import org.openstreetmap.josm.actions.JosmAction; … … 117 118 public final HelpAction help = new HelpAction(); 118 119 public final JosmAction about = new AboutAction(); 120 public final HistoryInfoAction historyinfo = new HistoryInfoAction(); 119 121 120 122 public final JMenu fileMenu = new JMenu(tr("File")); … … 269 271 current = helpMenu.add(about); 270 272 current.setAccelerator(about.shortCut); 273 current = helpMenu.add(historyinfo); 274 current.setAccelerator(historyinfo.shortCut); 271 275 add(helpMenu); 272 276 }
Note:
See TracChangeset
for help on using the changeset viewer.