Changeset 29794 in osm for applications/editors


Ignore:
Timestamp:
2013-07-31T19:02:05+02:00 (11 years ago)
Author:
akks
Message:

Remove the action, add importing SVG to File/Open

Location:
applications/editors/josm/plugins/importvec
Files:
1 deleted
2 edited

Legend:

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

    r29642 r29794  
    22<project name="importvec" default="dist" basedir=".">
    33    <!-- 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"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    66    <property name="plugin.main.version" value="5554"/>
  • applications/editors/josm/plugins/importvec/src/org/openstreetmap/josm/plugins/importvec/ImportVecPlugin.java

    r23707 r29794  
    22
    33import org.openstreetmap.josm.Main;
     4import org.openstreetmap.josm.actions.ExtensionFileFilter;
    45import org.openstreetmap.josm.plugins.Plugin;
    56import org.openstreetmap.josm.plugins.PluginInformation;
     
    910    public ImportVecPlugin(PluginInformation info) {
    1011        super(info);
    11         Main.main.menu.fileMenu.insert(new ImportVectorAction(), 3);
     12        ExtensionFileFilter.importers.add(new SvgImporter());
    1213    }
    1314
Note: See TracChangeset for help on using the changeset viewer.