Ignore:
Timestamp:
2016-06-29T20:55:29+02:00 (8 years ago)
Author:
donvip
Message:

remove calls to deprecated methods

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  
    44    <property name="commit.message" value="Changed constructor signature, updated build.xml"/>
    55    <!-- 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"/>
    77
    88    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/Create_grid_of_ways/src/CreateGridOfWaysPlugin/CreateGridOfWaysAction.java

    r30737 r32440  
    4646    @Override
    4747    public void actionPerformed(ActionEvent e) {
    48         Collection<OsmPrimitive> sel = Main.main.getCurrentDataSet().getSelected();
     48        Collection<OsmPrimitive> sel = Main.getLayerManager().getEditDataSet().getSelected();
    4949        Collection<Node> nodesWay1 = new LinkedList<>();
    5050        Collection<Node> nodesWay2 = new LinkedList<>();
Note: See TracChangeset for help on using the changeset viewer.