Changeset 16836 in osm for applications
- Timestamp:
- 2009-08-04T16:07:43+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/graphview
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/graphview/build.xml
r16630 r16836 57 57 <attribute name="Plugin-Description" value="Visualizes routing information as a routing graph."/> 58 58 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Graphview"/> 59 <attribute name="Plugin-Mainversion" value="18 15"/>59 <attribute name="Plugin-Mainversion" value="1893"/> 60 60 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 61 61 </manifest> -
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.