Ignore:
Timestamp:
2010-05-28T08:00:04+02:00 (14 years ago)
Author:
jttt
Message:

Adapt to latest JOSM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge/FakeMapView.java

    r19990 r21477  
    1616package wmsturbochallenge;
    1717
    18 import org.openstreetmap.josm.gui.MapView;
     18import java.awt.Graphics;
     19import java.awt.Graphics2D;
     20import java.awt.Point;
     21import java.awt.image.BufferedImage;
     22
    1923import org.openstreetmap.josm.data.ProjectionBounds;
    2024import org.openstreetmap.josm.data.coor.EastNorth;
    21 
    22 import java.awt.Point;
    23 import java.awt.Graphics;
    24 import java.awt.Graphics2D;
    25 import java.awt.image.BufferedImage;
     25import org.openstreetmap.josm.gui.MapView;
    2626
    2727class fake_map_view extends MapView {
     
    3737
    3838        public fake_map_view(MapView parent, double scale) {
     39                super(null); //TODO MapView constructor contains registering listeners and other code, that probably shouldn't be called in fake map view
    3940                this.parent = parent;
    4041                this.scale = scale;
Note: See TracChangeset for help on using the changeset viewer.