Changeset 32482 in osm for applications
- Timestamp:
- 2016-07-01T09:40:15+02:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/addrinterpolation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/addrinterpolation/build.xml
r31926 r32482 4 4 <property name="commit.message" value="Impoved Icon"/> 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/addrinterpolation/src/org/openstreetmap/josm/plugins/AddrInterpolation/AddrInterpolationDialog.java
r30737 r32482 535 535 private String FindRelation() { 536 536 String relationDescription = null; 537 DataSet currentDataSet = Main. main.getCurrentDataSet();537 DataSet currentDataSet = Main.getLayerManager().getEditDataSet(); 538 538 if (currentDataSet != null) { 539 539 for (Relation relation : currentDataSet.getRelations()) { … … 583 583 int namedWayCount = 0; 584 584 int unNamedWayCount = 0; 585 DataSet currentDataSet = Main. main.getCurrentDataSet();585 DataSet currentDataSet = Main.getLayerManager().getEditDataSet(); 586 586 if (currentDataSet != null) { 587 587 for (OsmPrimitive osm : currentDataSet.getSelectedWays()) { … … 1034 1034 1035 1035 // De-select address interpolation way; leave street selected 1036 DataSet currentDataSet = Main. main.getCurrentDataSet();1036 DataSet currentDataSet = Main.getLayerManager().getEditDataSet(); 1037 1037 if (currentDataSet != null) { 1038 1038 currentDataSet.clearSelection(addrInterpolationWay);
Note:
See TracChangeset
for help on using the changeset viewer.