Ignore:
Timestamp:
2009-11-14T20:01:49+01:00 (15 years ago)
Author:
jttt
Message:

Updated to new MapViewPaintable.paint arguments

Location:
applications/editors/josm/plugins/routing
Files:
2 edited

Legend:

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

    r18415 r18597  
    4444                <attribute name="Plugin-Description" value="Provides routing capabilities."/>
    4545                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Routing"/>
    46                 <attribute name="Plugin-Mainversion" value="2381"/>
     46                <attribute name="Plugin-Mainversion" value="2450"/>
    4747                <attribute name="Plugin-Stage" value="50"/>
    4848                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
  • applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/RoutingLayer.java

    r18415 r18597  
    4646import org.openstreetmap.josm.Main;
    4747import org.openstreetmap.josm.actions.RenameLayerAction;
     48import org.openstreetmap.josm.data.Bounds;
    4849import org.openstreetmap.josm.data.osm.Node;
    4950import org.openstreetmap.josm.data.osm.Way;
     
    227228     */
    228229    @Override
    229     public void paint(Graphics g, MapView mv) {
     230    public void paint(Graphics2D g, MapView mv, Bounds bounds) {
    230231        boolean isActiveLayer = (mv.getActiveLayer().equals(this));
    231232        // Get routing nodes (start, middle, end)
Note: See TracChangeset for help on using the changeset viewer.