Changeset 33961 in osm for applications


Ignore:
Timestamp:
2017-12-26T22:56:03+01:00 (7 years ago)
Author:
donvip
Message:

update to JOSM 13243

Location:
applications/editors/josm/plugins/seachart
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/seachart/build.xml

    r33222 r33961  
    44    <property name="commit.message" value="[Seachart] Publish new release"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="11868"/>
     6    <property name="plugin.main.version" value="13243"/>
    77
    88    <property name="plugin.author" value="Malcolm Herring"/>
  • applications/editors/josm/plugins/seachart/src/seachart/ChartImage.java

    r33724 r33961  
    88import java.awt.geom.Point2D;
    99import java.awt.geom.Point2D.Double;
     10import java.util.Collections;
     11import java.util.List;
    1012
    1113import javax.swing.Action;
    1214
    13 import org.openstreetmap.josm.gui.MainApplication;
    1415import org.openstreetmap.josm.data.Bounds;
    1516import org.openstreetmap.josm.data.coor.LatLon;
    1617import org.openstreetmap.josm.data.imagery.ImageryInfo;
    1718import org.openstreetmap.josm.data.osm.visitor.BoundingXYVisitor;
     19import org.openstreetmap.josm.gui.MainApplication;
    1820import org.openstreetmap.josm.gui.MapView;
    1921import org.openstreetmap.josm.gui.NavigatableComponent.ZoomChangeListener;
     
    5254    public Action[] getMenuEntries() {
    5355        return null;
     56    }
     57
     58    @Override
     59    protected List<OffsetMenuEntry> getOffsetMenuEntries() {
     60        return Collections.emptyList();
    5461    }
    5562
Note: See TracChangeset for help on using the changeset viewer.