Ignore:
Timestamp:
2009-10-31T21:00:59+01:00 (15 years ago)
Author:
miken
Message:

Address Interpolation Plugin: Remove deprecated select procedure

Location:
applications/editors/josm/plugins/addrinterpolation
Files:
2 edited

Legend:

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

    r17883 r18398  
    9191                <attribute name="Plugin-Description" value="Group common Address Interpolation inputs in a single dialog,"/>
    9292                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/AddrInterpolation"/>
    93                 <attribute name="Plugin-Mainversion" value="2161"/>
     93                <attribute name="Plugin-Mainversion" value="2350"/>
    9494                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    9595            </manifest>
  • applications/editors/josm/plugins/addrinterpolation/src/org/openstreetmap/josm/plugins/AddrInterpolation/AddrInterpolationDialog.java

    r17883 r18398  
    766766
    767767                        // De-select address interpolation way; leave street selected
    768                         addrInterpolationWay.setSelected(false);
     768                        DataSet currentDataSet = Main.main.getCurrentDataSet();
     769                        if (currentDataSet != null) {
     770                                currentDataSet.clearSelection(addrInterpolationWay);
     771                        }
    769772                }
    770773
Note: See TracChangeset for help on using the changeset viewer.