Changeset 29778 in osm for applications/editors/josm/plugins/FixAddresses
- Timestamp:
- 2013-07-25T21:57:38+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/FixAddresses
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FixAddresses/build.xml
r29661 r29778 1 1 <?xml version="1.0" encoding="utf-8"?> 2 2 <project name="FixAddresses" default="dist" basedir="."> 3 4 5 6 <property name="plugin.main.version" value="60 10"/>3 <!-- enter the SVN commit message --> 4 <property name="commit.message" value="fix compile error (core changes)"/> 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="6082"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/FixAddressesPlugin.java
r29500 r29778 14 14 package org.openstreetmap.josm.plugins.fixAddresses; 15 15 16 import javax.swing.JMenu; 16 17 import org.openstreetmap.josm.Main; 17 18 import org.openstreetmap.josm.gui.IconToggleButton; 19 import org.openstreetmap.josm.gui.MainMenu; 18 20 import org.openstreetmap.josm.gui.MapFrame; 19 21 import org.openstreetmap.josm.gui.preferences.PreferenceSetting; … … 41 43 42 44 // ... and add them to the tools menu in main 43 Main.main.menu.toolsMenu.addSeparator(); 44 Main.main.menu.toolsMenu.add(action); 45 Main.main.menu.toolsMenu.add(incAddrAction); 45 MainMenu.add(Main.main.menu.dataMenu, action, false, 0); 46 MainMenu.add(Main.main.menu.selectionMenu, incAddrAction); 46 47 47 48 // create preferences instance
Note:
See TracChangeset
for help on using the changeset viewer.