Changeset 16836 in osm for applications


Ignore:
Timestamp:
2009-08-04T16:07:43+02:00 (15 years ago)
Author:
guggis
Message:

Updated to JOSM 1893

Location:
applications/editors/josm/plugins/graphview
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/graphview/build.xml

    r16630 r16836  
    5757                <attribute name="Plugin-Description" value="Visualizes routing information as a routing graph."/>
    5858                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Graphview"/>
    59                 <attribute name="Plugin-Mainversion" value="1815"/>
     59                <attribute name="Plugin-Mainversion" value="1893"/>
    6060                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    6161            </manifest>
  • applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/core/access/AccessRulesetReader.java

    r16520 r16836  
    2626                };
    2727                public AccessRulesetSyntaxException(Throwable t) {
    28                         super(t);
     28                        super(t.toString());
    2929                }
    3030        }
  • applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/layer/GraphViewLayer.java

    r16520 r16836  
    324324        @Override
    325325        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(),
    328328                                new JMenuItem(new RenameLayerAction(null, this)), new JSeparator(),
    329329                                new JMenuItem(new LayerListPopup.InfoAction(this)) };
Note: See TracChangeset for help on using the changeset viewer.