Changeset 16836 in osm for applications/editors/josm/plugins/graphview/src
- Timestamp:
- 2009-08-04T16:07:43+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/core/access/AccessRulesetReader.java
r16520 r16836 26 26 }; 27 27 public AccessRulesetSyntaxException(Throwable t) { 28 super(t );28 super(t.toString()); 29 29 } 30 30 } -
applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/layer/GraphViewLayer.java
r16520 r16836 324 324 @Override 325 325 public Component[] getMenuEntries() { 326 return new Component[] { new JMenuItem( new LayerListDialog.ShowHideLayerAction(this)),327 new JMenuItem( new LayerListDialog.DeleteLayerAction(this)), new JSeparator(),326 return new Component[] { new JMenuItem(LayerListDialog.getInstance().createShowHideLayerAction(this)), 327 new JMenuItem(LayerListDialog.getInstance().createDeleteLayerAction(this)), new JSeparator(), 328 328 new JMenuItem(new RenameLayerAction(null, this)), new JSeparator(), 329 329 new JMenuItem(new LayerListPopup.InfoAction(this)) };
Note:
See TracChangeset
for help on using the changeset viewer.