Changeset 19 in josm
- Timestamp:
- 2005-10-09T23:57:09+02:00 (19 years ago)
- Files:
-
- 3 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/gui/Main.java
r18 r19 10 10 import javax.swing.JOptionPane; 11 11 import javax.swing.JPanel; 12 import javax.swing.JSeparator; 12 13 import javax.swing.JToolBar; 13 14 import javax.swing.UIManager; 14 15 16 import org.openstreetmap.josm.actions.AboutAction; 15 17 import org.openstreetmap.josm.actions.ExitAction; 16 18 import org.openstreetmap.josm.actions.OpenGpxAction; … … 69 71 ExitAction exitAction = new ExitAction(); 70 72 PreferencesAction preferencesAction = new PreferencesAction(); 73 AboutAction aboutAction = new AboutAction(); 71 74 72 75 // creating menu … … 91 94 editMenu.add(preferencesAction); 92 95 mainMenu.add(editMenu); 96 97 mainMenu.add(new JSeparator()); 98 JMenu helpMenu = new JMenu("Help"); 99 helpMenu.setMnemonic('H'); 100 helpMenu.add(aboutAction); 101 mainMenu.add(helpMenu); 93 102 94 103 // creating toolbar
Note:
See TracChangeset
for help on using the changeset viewer.