Changeset 19422 in osm for applications/editors/josm/plugins/addrinterpolation/src/org
- Timestamp:
- 2010-01-13T14:13:59+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/addrinterpolation/src/org/openstreetmap/josm/plugins/AddrInterpolation/AddrInterpolationPlugin.java
r17721 r19422 5 5 import org.openstreetmap.josm.Main; 6 6 import org.openstreetmap.josm.plugins.Plugin; 7 import org.openstreetmap.josm.plugins.PluginInformation; 7 8 8 9 public class AddrInterpolationPlugin extends Plugin { … … 13 14 * constructor 14 15 */ 15 public AddrInterpolationPlugin() { 16 public AddrInterpolationPlugin(PluginInformation info) { 17 super(info); 16 18 action = new AddrInterpolationAction(); 17 19 Main.main.menu.toolsMenu.add(action); 18 20 } 19 20 21 21 }
Note:
See TracChangeset
for help on using the changeset viewer.