Changeset 19448 in osm for applications


Ignore:
Timestamp:
2010-01-13T14:45:10+01:00 (15 years ago)
Author:
guggis
Message:

'Changed the constructor signature of the plugin main class'

Location:
applications/editors/josm/plugins/livegps
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/livegps/build.xml

    r19056 r19448  
    2727<project name="livegps" default="dist" basedir=".">
    2828
    29         <property name="commit.message" value="Updated to JOSM 2621; updated build.xml" />
    30         <property name="plugin.main.version" value="2621" />
     29        <property name="commit.message" value="Changed the constructor signature of the plugin main class" />
     30        <property name="plugin.main.version" value="2830" />
    3131       
    3232
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java

    r19056 r19448  
    2424import org.openstreetmap.josm.gui.layer.Layer;
    2525import org.openstreetmap.josm.plugins.Plugin;
     26import org.openstreetmap.josm.plugins.PluginInformation;
    2627import org.openstreetmap.josm.tools.Shortcut;
    2728
     
    115116        }
    116117
    117         public LiveGpsPlugin() {
     118        public LiveGpsPlugin(PluginInformation info) {
     119                super(info);
    118120                MainMenu menu = Main.main.menu;
    119121                lgpsmenu = menu.addMenu(marktr("LiveGPS"), KeyEvent.VK_G,
Note: See TracChangeset for help on using the changeset viewer.