Changeset 1728 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2009-07-04T14:04:08+02:00 (14 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/command
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/MoveCommand.java
r1722 r1728 69 69 for (Node n : this.objects) { 70 70 OldState os = new OldState(); 71 os.latlon = n .getCoor();71 os.latlon = new LatLon(n.getCoor()); 72 72 os.modified = n.modified; 73 73 oldState.add(os); -
trunk/src/org/openstreetmap/josm/command/RotateCommand.java
r1722 r1728 75 75 for (Node n : this.objects) { 76 76 OldState os = new OldState(); 77 os.latlon = n .getCoor();77 os.latlon = new LatLon(n.getCoor()); 78 78 os.eastNorth = n.getEastNorth(); 79 79 os.modified = n.modified;
Note: See TracChangeset
for help on using the changeset viewer.