Ignore:
Timestamp:
2013-04-19T23:58:30+02:00 (11 years ago)
Author:
donvip
Message:

[josm_fixaddresses] update to last jmapviewer (see #josm8620)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/BBoxMapRectangle.java

    r25373 r29519  
    1818
    1919import org.openstreetmap.gui.jmapviewer.Coordinate;
    20 import org.openstreetmap.gui.jmapviewer.interfaces.MapRectangle;
     20import org.openstreetmap.gui.jmapviewer.MapRectangleImpl;
    2121import org.openstreetmap.josm.data.osm.BBox;
    2222
    23 public class BBoxMapRectangle implements MapRectangle {
     23public class BBoxMapRectangle extends MapRectangleImpl {
    2424        private BBox bbox;
    2525
     
    2828         */
    2929        public BBoxMapRectangle(BBox bbox) {
    30                 super();
     30                super(null, null);
    3131                this.bbox = bbox;
    3232        }
     
    4646                        // do nothing here
    4747        }
    48 
    4948}
Note: See TracChangeset for help on using the changeset viewer.