Changeset 33961 in osm for applications/editors/josm
- Timestamp:
- 2017-12-26T22:56:03+01:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/seachart
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/build.xml
r33222 r33961 4 4 <property name="commit.message" value="[Seachart] Publish new release"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="1 1868"/>6 <property name="plugin.main.version" value="13243"/> 7 7 8 8 <property name="plugin.author" value="Malcolm Herring"/> -
applications/editors/josm/plugins/seachart/src/seachart/ChartImage.java
r33724 r33961 8 8 import java.awt.geom.Point2D; 9 9 import java.awt.geom.Point2D.Double; 10 import java.util.Collections; 11 import java.util.List; 10 12 11 13 import javax.swing.Action; 12 14 13 import org.openstreetmap.josm.gui.MainApplication;14 15 import org.openstreetmap.josm.data.Bounds; 15 16 import org.openstreetmap.josm.data.coor.LatLon; 16 17 import org.openstreetmap.josm.data.imagery.ImageryInfo; 17 18 import org.openstreetmap.josm.data.osm.visitor.BoundingXYVisitor; 19 import org.openstreetmap.josm.gui.MainApplication; 18 20 import org.openstreetmap.josm.gui.MapView; 19 21 import org.openstreetmap.josm.gui.NavigatableComponent.ZoomChangeListener; … … 52 54 public Action[] getMenuEntries() { 53 55 return null; 56 } 57 58 @Override 59 protected List<OffsetMenuEntry> getOffsetMenuEntries() { 60 return Collections.emptyList(); 54 61 } 55 62
Note:
See TracChangeset
for help on using the changeset viewer.