Changeset 14120 in osm for applications/editors/josm/plugins/livegps
- Timestamp:
- 2009-03-18T15:55:16+01:00 (17 years ago)
- Location:
- applications/editors/josm/plugins/livegps
- Files:
-
- 2 edited
-
build.xml (modified) (1 diff)
-
src/livegps/LiveGpsPlugin.java (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/livegps/build.xml
r14015 r14120 26 26 <attribute name="Plugin-Description" value="Support live GPS input (moving dot) through a connection to gpsd server."/> 27 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/LiveGPS"/> 28 <attribute name="Plugin-Mainversion" value="14 65"/>28 <attribute name="Plugin-Mainversion" value="1498"/> 29 29 <attribute name="Plugin-Stage" value="50"/> 30 30 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> -
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.
