Changeset 22549 in osm for applications/editors/josm/plugins/routes
- Timestamp:
- 2010-08-03T08:17:26+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/routes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/routes/build.xml
r20427 r22549 28 28 29 29 <property name="commit.message" value="Changed the constructor signature of the plugin main class" /> 30 <property name="plugin.main.version" value="3 116" />30 <property name="plugin.main.version" value="3408" /> 31 31 32 32 <property name="josm" location="../../core/dist/josm-custom.jar"/> -
applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/RouteLayer.java
r19532 r22549 2 2 3 3 import java.awt.Color; 4 import java.awt.Component;5 4 import java.awt.Graphics2D; 6 5 import java.awt.Stroke; … … 8 7 import java.util.List; 9 8 9 import javax.swing.Action; 10 10 import javax.swing.Icon; 11 11 … … 73 73 74 74 @Override 75 public Component[] getMenuEntries() {76 return new Component[0];75 public Action[] getMenuEntries() { 76 return new Action[0]; 77 77 } 78 78
Note:
See TracChangeset
for help on using the changeset viewer.