Changeset 14120 in osm for applications/editors/josm/plugins/livegps/src
- Timestamp:
- 2009-03-18T15:55:16+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java
r14057 r14120 1 1 package livegps; 2 2 3 import static org.openstreetmap.josm.tools.I18n.marktr; 3 4 import static org.openstreetmap.josm.tools.I18n.tr; 4 5 … … 11 12 import javax.swing.JCheckBoxMenuItem; 12 13 import javax.swing.JMenu; 13 import javax.swing.JMenuBar;14 14 import javax.swing.JMenuItem; 15 15 … … 80 80 { 81 81 MainMenu menu = Main.main.menu; 82 lgpsmenu = new JMenu(tr("LiveGPS")); 83 menu.add(lgpsmenu, KeyEvent.VK_G, "livegps"); 84 menu.add(lgpsmenu, 5); 82 lgpsmenu = menu.addMenu(marktr("LiveGPS"), KeyEvent.VK_G, menu.defaultMenuPos); 85 83 86 84 JosmAction captureAction = new CaptureAction();
Note:
See TracChangeset
for help on using the changeset viewer.