Changeset 30337 in osm for applications/editors/josm
- Timestamp:
- 2014-03-22T14:36:02+01:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/build.xml
r30200 r30337 3 3 4 4 <!-- enter the SVN commit message --> 5 <property name="commit.message" value="[josm_utilsplugin2]: move search classes to separate package, inside now finds both node and ways"/>5 <property name="commit.message" value="[josm_utilsplugin2]: alpha version of multitagger ctrl-t"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 7 <property name="plugin.main.version" value="6317"/> -
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/UtilsPlugin2.java
r30200 r30337 3 3 4 4 5 import com.sun.org.apache.xpath.internal.operations.Mult; 5 6 import javax.swing.JMenu; 6 7 import javax.swing.JMenuItem; … … 28 29 import org.openstreetmap.josm.plugins.utilsplugin2.customurl.UtilsPluginPreferences; 29 30 import org.openstreetmap.josm.plugins.utilsplugin2.latlon.LatLonAction; 31 import org.openstreetmap.josm.plugins.utilsplugin2.multitagger.MultiTagAction; 30 32 import org.openstreetmap.josm.plugins.utilsplugin2.replacegeometry.ReplaceGeometryAction; 31 33 import org.openstreetmap.josm.plugins.utilsplugin2.search.UtilsUnaryMatchFactory; … … 63 65 JMenuItem wiki; 64 66 JMenuItem latlon; 67 JMenuItem multiTag; 65 68 66 69 JMenuItem replaceGeometry; … … 119 122 120 123 selectURL = MainMenu.add(dataMenu, new ChooseURLAction()); 121 124 multiTag = MainMenu.add(dataMenu, new MultiTagAction()); 125 122 126 // register search operators 123 127 SearchCompiler.addMatchFactory(new UtilsUnaryMatchFactory()); … … 155 159 156 160 drawArc.setEnabled(enabled); 161 multiTag.setEnabled(enabled); 157 162 } 158 163
Note:
See TracChangeset
for help on using the changeset viewer.