Changeset 29519 in osm for applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap
- Timestamp:
- 2013-04-19T23:58:30+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/BBoxMapRectangle.java
r25373 r29519 18 18 19 19 import org.openstreetmap.gui.jmapviewer.Coordinate; 20 import org.openstreetmap.gui.jmapviewer. interfaces.MapRectangle;20 import org.openstreetmap.gui.jmapviewer.MapRectangleImpl; 21 21 import org.openstreetmap.josm.data.osm.BBox; 22 22 23 public class BBoxMapRectangle implements MapRectangle{23 public class BBoxMapRectangle extends MapRectangleImpl { 24 24 private BBox bbox; 25 25 … … 28 28 */ 29 29 public BBoxMapRectangle(BBox bbox) { 30 super( );30 super(null, null); 31 31 this.bbox = bbox; 32 32 } … … 46 46 // do nothing here 47 47 } 48 49 48 }
Note:
See TracChangeset
for help on using the changeset viewer.