Changeset 33821 in osm for applications/editors/josm/plugins/piclayer/src
- Timestamp:
- 2017-11-17T20:05:33+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/piclayer/src/org/openstreetmap/josm/plugins/piclayer/command/TransformCommand.java
r33809 r33821 9 9 import org.openstreetmap.josm.Main; 10 10 import org.openstreetmap.josm.command.Command; 11 import org.openstreetmap.josm.data.osm.DataSet; 11 12 import org.openstreetmap.josm.data.osm.OsmPrimitive; 12 import org.openstreetmap.josm.gui.MainApplication;13 13 import org.openstreetmap.josm.plugins.piclayer.layer.PicLayerAbstract; 14 14 import org.openstreetmap.josm.plugins.piclayer.transform.PictureTransform; … … 23 23 24 24 public TransformCommand(PicLayerAbstract layer, String actionName) { 25 super( MainApplication.getLayerManager().getEditDataSet());25 super(new DataSet()); // not really a command... 26 26 this.layer = layer; 27 27 this.actionName = actionName;
Note:
See TracChangeset
for help on using the changeset viewer.