Index: applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/BBoxMapRectangle.java
===================================================================
--- applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/BBoxMapRectangle.java	(revision 29500)
+++ applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/BBoxMapRectangle.java	(revision 29519)
@@ -18,8 +18,8 @@
 
 import org.openstreetmap.gui.jmapviewer.Coordinate;
-import org.openstreetmap.gui.jmapviewer.interfaces.MapRectangle;
+import org.openstreetmap.gui.jmapviewer.MapRectangleImpl;
 import org.openstreetmap.josm.data.osm.BBox;
 
-public class BBoxMapRectangle implements MapRectangle {
+public class BBoxMapRectangle extends MapRectangleImpl {
 	private BBox bbox;
 
@@ -28,5 +28,5 @@
 	 */
 	public BBoxMapRectangle(BBox bbox) {
-		super();
+		super(null, null);
 		this.bbox = bbox;
 	}
@@ -46,4 +46,3 @@
 			// do nothing here
 	}
-
 }
