Changeset 19448 in osm for applications
- Timestamp:
- 2010-01-13T14:45:10+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/livegps
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/livegps/build.xml
r19056 r19448 27 27 <project name="livegps" default="dist" basedir="."> 28 28 29 <property name="commit.message" value=" Updated to JOSM 2621; updated build.xml" />30 <property name="plugin.main.version" value="2 621" />29 <property name="commit.message" value="Changed the constructor signature of the plugin main class" /> 30 <property name="plugin.main.version" value="2830" /> 31 31 32 32 -
applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java
r19056 r19448 24 24 import org.openstreetmap.josm.gui.layer.Layer; 25 25 import org.openstreetmap.josm.plugins.Plugin; 26 import org.openstreetmap.josm.plugins.PluginInformation; 26 27 import org.openstreetmap.josm.tools.Shortcut; 27 28 … … 115 116 } 116 117 117 public LiveGpsPlugin() { 118 public LiveGpsPlugin(PluginInformation info) { 119 super(info); 118 120 MainMenu menu = Main.main.menu; 119 121 lgpsmenu = menu.addMenu(marktr("LiveGPS"), KeyEvent.VK_G,
Note:
See TracChangeset
for help on using the changeset viewer.