Changeset 1416 in josm
- Timestamp:
- 2009-02-16T15:21:17+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainMenu.java
r1415 r1416 7 7 import java.awt.event.ActionEvent; 8 8 import java.awt.event.ActionListener; 9 import java.awt.event.KeyEvent; 9 10 10 11 import javax.swing.JCheckBoxMenuItem; … … 13 14 import javax.swing.JMenuItem; 14 15 import javax.swing.KeyStroke; 15 import java.awt.event.KeyEvent;16 16 17 17 import org.openstreetmap.josm.Main; … … 20 20 import org.openstreetmap.josm.actions.AlignInCircleAction; 21 21 import org.openstreetmap.josm.actions.AlignInLineAction; 22 import org.openstreetmap.josm.actions.OpenLocationAction;23 import org.openstreetmap.josm.actions.OrthogonalizeAction;24 22 import org.openstreetmap.josm.actions.AutoScaleAction; 25 23 import org.openstreetmap.josm.actions.CombineWayAction; … … 39 37 import org.openstreetmap.josm.actions.NewAction; 40 38 import org.openstreetmap.josm.actions.OpenFileAction; 39 import org.openstreetmap.josm.actions.OpenLocationAction; 40 import org.openstreetmap.josm.actions.OrthogonalizeAction; 41 41 import org.openstreetmap.josm.actions.PasteAction; 42 42 import org.openstreetmap.josm.actions.PasteTagsAction; … … 47 47 import org.openstreetmap.josm.actions.SaveAsAction; 48 48 import org.openstreetmap.josm.actions.SelectAllAction; 49 import org.openstreetmap.josm.actions.ShowStatusReportAction; 49 50 import org.openstreetmap.josm.actions.SplitWayAction; 51 import org.openstreetmap.josm.actions.ToggleGPXLinesAction; 50 52 import org.openstreetmap.josm.actions.UnGlueAction; 51 53 import org.openstreetmap.josm.actions.UndoAction; … … 62 64 import org.openstreetmap.josm.actions.audio.AudioSlowerAction; 63 65 import org.openstreetmap.josm.actions.search.SearchAction; 64 import org.openstreetmap.josm.actions.ToggleGPXLinesAction;65 66 import org.openstreetmap.josm.tools.Shortcut; 66 67 … … 130 131 public final HelpAction help = new HelpAction(); 131 132 public final JosmAction about = new AboutAction(); 133 public final JosmAction statusreport = new ShowStatusReportAction(); 132 134 133 135 public final JMenu fileMenu = new JMenu(tr("File")); … … 267 269 }); 268 270 helpMenu.add(check);*/ 269 current = helpMenu.add(help); // why is help not a JosmAction? 271 272 helpMenu.add(statusreport); 273 274 current = helpMenu.add(help); // FIXME why is help not a JosmAction? 270 275 current.setAccelerator(Shortcut.registerShortcut("system:help", tr("Help"), KeyEvent.VK_F1, 271 276 Shortcut.GROUP_DIRECT).getKeyStroke());
Note:
See TracChangeset
for help on using the changeset viewer.