Changeset 16621 in osm for applications/editors/josm/plugins/lakewalker
- Timestamp:
- 2009-07-21T20:32:20+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/lakewalker
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/lakewalker/build.xml
r16586 r16621 26 26 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 27 27 <attribute name="Plugin-Description" value="Helps vectorizing WMS images." /> 28 <attribute name="Plugin-Mainversion" value="181 3"/>28 <attribute name="Plugin-Mainversion" value="1815"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerAction.java
r16586 r16621 290 290 if (!commands.isEmpty()) { 291 291 Main.main.undoRedo.add(new SequenceCommand(tr("Lakewalker trace"), commands)); 292 Main. ds.setSelected(ways);292 Main.main.getCurrentDataSet().setSelected(ways); 293 293 } else { 294 294 System.out.println("Failed"); -
applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerReader.java
r16586 r16621 113 113 if (!commands.isEmpty()) { 114 114 Main.main.undoRedo.add(new SequenceCommand(tr("Lakewalker trace"), commands)); 115 Main. ds.setSelected(ways);115 Main.main.getCurrentDataSet().setSelected(ways); 116 116 } 117 117 } finally {
Note:
See TracChangeset
for help on using the changeset viewer.