Changeset 32287 in osm for applications/editors/josm/plugins/importvec
- Timestamp:
- 2016-06-16T23:05:20+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/importvec
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/importvec/build.xml
r31923 r32287 4 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 <property name="plugin.main.version" value=" 7001"/>6 <property name="plugin.main.version" value="10407"/> 7 7 8 8 <property name="plugin.author" value="Upliner"/> -
applications/editors/josm/plugins/importvec/src/org/openstreetmap/josm/plugins/importvec/ImportVecPlugin.java
r29854 r32287 9 9 public ImportVecPlugin(PluginInformation info) { 10 10 super(info); 11 ExtensionFileFilter. importers.add(new SvgImporter());11 ExtensionFileFilter.addImporter(new SvgImporter()); 12 12 } 13 14 13 }
Note:
See TracChangeset
for help on using the changeset viewer.