Changeset 29794 in osm for applications/editors
- Timestamp:
- 2013-07-31T19:02:05+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/importvec
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/importvec/build.xml
r29642 r29794 2 2 <project name="importvec" default="dist" basedir="."> 3 3 <!-- enter the SVN commit message --> 4 <property name="commit.message" value=" Commit message"/>4 <property name="commit.message" value="Remove the action, add importing SVG to File/Open"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 6 <property name="plugin.main.version" value="5554"/> -
applications/editors/josm/plugins/importvec/src/org/openstreetmap/josm/plugins/importvec/ImportVecPlugin.java
r23707 r29794 2 2 3 3 import org.openstreetmap.josm.Main; 4 import org.openstreetmap.josm.actions.ExtensionFileFilter; 4 5 import org.openstreetmap.josm.plugins.Plugin; 5 6 import org.openstreetmap.josm.plugins.PluginInformation; … … 9 10 public ImportVecPlugin(PluginInformation info) { 10 11 super(info); 11 Main.main.menu.fileMenu.insert(new ImportVectorAction(), 3);12 ExtensionFileFilter.importers.add(new SvgImporter()); 12 13 } 13 14
Note:
See TracChangeset
for help on using the changeset viewer.