Ignore:
Timestamp:
2017-03-24T23:18:22+01:00 (7 years ago)
Author:
donvip
Message:

update to JOSM 11772

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

Legend:

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

    r33155 r33197  
    11<?xml version="1.0" encoding="utf-8"?>
    22<project name="opendata" default="dist" basedir=".">
    3     <property name="plugin.main.version" value="11606"/>
     3    <property name="plugin.main.version" value="11772"/>
    44    <property name="plugin.author" value="Don-vip"/>
    55    <property name="plugin.class" value="org.openstreetmap.josm.plugins.opendata.OdPlugin"/>
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/datasets/WayCombiner.java

    r33155 r33197  
    1414import java.util.Set;
    1515
     16import org.openstreetmap.josm.Main;
    1617import org.openstreetmap.josm.actions.CombineWayAction.NodeGraph;
    1718import org.openstreetmap.josm.command.Command;
     
    131132        completeTagCollectionForEditing(tagsToEdit);
    132133
    133         CombinePrimitiveResolverDialog dialog = CombinePrimitiveResolverDialog.getInstance();
     134        CombinePrimitiveResolverDialog dialog = new CombinePrimitiveResolverDialog(Main.parent);
    134135        dialog.getTagConflictResolverModel().populate(tagsToEdit, completeWayTags.getKeysWithMultipleValues());
    135136        dialog.setTargetPrimitive(targetWay);
Note: See TracChangeset for help on using the changeset viewer.