Changeset 32441 in osm for applications/editors/josm/plugins/CustomizePublicTransportStop
- Timestamp:
- 2016-06-29T20:58:44+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/CustomizePublicTransportStop
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CustomizePublicTransportStop/build.properties
r32048 r32441 10 10 # via the OSM subversion repository 11 11 # 12 plugin.version=0. 1.212 plugin.version=0.3 13 13 14 14 # the lowest JOSM version the curent plugin version is compatible with 15 15 # 16 josm.required.version= 717116 josm.required.version=10353 17 17 18 18 # the full path to the JOSM jar against which this plugin is built -
applications/editors/josm/plugins/CustomizePublicTransportStop/build.xml
r32310 r32441 71 71 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/CustomizePublicTransportStop" /> 72 72 <attribute name="Plugin-Mainversion" value="${josm.required.version}" /> 73 <attribute name="Plugin-Version" value="0. 2" />73 <attribute name="Plugin-Version" value="0.3" /> 74 74 <attribute name="RU_Plugin-Description" value="Настройка остановки общественного транспорта в соответствии со стандартом" /> 75 75 </manifest> -
applications/editors/josm/plugins/CustomizePublicTransportStop/src/ru/rodsoft/openstreetmap/josm/plugins/customizepublictransportstop/CustomizeStopAction.java
r32048 r32441 76 76 if (!isEnabled()) 77 77 return; 78 CreateStopAreaFromSelectedObjectOperation createStopAreaFromSelectedObjectOperation = new CreateStopAreaFromSelectedObjectOperation(getCurrentDataSet()); 78 CreateStopAreaFromSelectedObjectOperation createStopAreaFromSelectedObjectOperation = new CreateStopAreaFromSelectedObjectOperation( 79 getLayerManager().getEditDataSet()); 79 80 StopArea stopArea = createStopAreaFromSelectedObjectOperation.performCustomizing(null); 80 81 if(stopArea == null) … … 92 93 public StopArea performCustomizing(StopArea stopArea) 93 94 { 94 CustomizeStopAreaOperation customizeStopAreaOperation = new CustomizeStopAreaOperation(get CurrentDataSet());95 CustomizeStopAreaOperation customizeStopAreaOperation = new CustomizeStopAreaOperation(getLayerManager().getEditDataSet()); 95 96 return customizeStopAreaOperation.performCustomizing(stopArea); 96 97 }
Note:
See TracChangeset
for help on using the changeset viewer.