Changeset 32440 in osm
- Timestamp:
- 2016-06-29T20:55:29+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/Create_grid_of_ways
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/Create_grid_of_ways/build.xml
r31926 r32440 4 4 <property name="commit.message" value="Changed constructor signature, updated build.xml"/> 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="10279"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/Create_grid_of_ways/src/CreateGridOfWaysPlugin/CreateGridOfWaysAction.java
r30737 r32440 46 46 @Override 47 47 public void actionPerformed(ActionEvent e) { 48 Collection<OsmPrimitive> sel = Main. main.getCurrentDataSet().getSelected();48 Collection<OsmPrimitive> sel = Main.getLayerManager().getEditDataSet().getSelected(); 49 49 Collection<Node> nodesWay1 = new LinkedList<>(); 50 50 Collection<Node> nodesWay2 = new LinkedList<>();
Note:
See TracChangeset
for help on using the changeset viewer.