Changeset 22548 in osm for applications/editors/josm/plugins/editgpx/src
- Timestamp:
- 2010-08-03T08:13:23+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/editgpx/src/org/openstreetmap/josm/plugins/editgpx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/editgpx/src/org/openstreetmap/josm/plugins/editgpx/EditGpxLayer.java
r21582 r22548 7 7 8 8 import java.awt.Color; 9 import java.awt.Component;10 9 import java.awt.Graphics2D; 11 10 import java.awt.Point; … … 14 13 15 14 import javax.swing.AbstractAction; 15 import javax.swing.Action; 16 16 import javax.swing.Icon; 17 17 import javax.swing.ImageIcon; 18 import javax.swing.JMenuItem;19 import javax.swing.JSeparator;20 18 21 19 import org.openstreetmap.josm.Main; … … 73 71 74 72 @Override 75 public Component[] getMenuEntries() {76 return new Component[] {77 new JMenuItem(LayerListDialog.getInstance().createShowHideLayerAction(this)),78 new JMenuItem(LayerListDialog.getInstance().createDeleteLayerAction(this)),79 new JSeparator(),80 new JMenuItem(layerImport),81 new JMenuItem(new ConvertToGpxLayerAction()),82 new JMenuItem(new ConvertToAnonTimeGpxLayerAction()),83 new JSeparator(),84 new JMenuItem(new LayerListPopup.InfoAction(this))};73 public Action[] getMenuEntries() { 74 return new Action[] { 75 LayerListDialog.getInstance().createShowHideLayerAction(), 76 LayerListDialog.getInstance().createDeleteLayerAction(), 77 SeparatorLayerAction.INSTANCE, 78 layerImport, 79 new ConvertToGpxLayerAction(), 80 new ConvertToAnonTimeGpxLayerAction(), 81 SeparatorLayerAction.INSTANCE, 82 new LayerListPopup.InfoAction(this)}; 85 83 } 86 84 -
applications/editors/josm/plugins/editgpx/src/org/openstreetmap/josm/plugins/editgpx/EditGpxPlugin.java
r21474 r22548 25 25 * TODO: 26 26 * - BUG: when importing eGpxLayer is shown as RawGpxLayer?? 27 * - BUG: after deletion of layer not all data is deleted (eg dataset)28 27 * - implement reset if user made mistake while marking 29 28 *
Note:
See TracChangeset
for help on using the changeset viewer.