Ignore:
Timestamp:
2018-08-18T18:48:33+02:00 (6 years ago)
Author:
donvip
Message:

update to JOSM 14153

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/merge-overlap/src/mergeoverlap/hack/MyCombinePrimitiveResolverDialog.java

    r34056 r34530  
    88import java.util.Map;
    99
    10 import org.openstreetmap.josm.Main;
    1110import org.openstreetmap.josm.command.ChangePropertyCommand;
    1211import org.openstreetmap.josm.command.Command;
     
    1514import org.openstreetmap.josm.data.osm.TagCollection;
    1615import org.openstreetmap.josm.data.osm.Way;
     16import org.openstreetmap.josm.gui.MainApplication;
    1717import org.openstreetmap.josm.gui.conflict.tags.CombinePrimitiveResolverDialog;
    1818import org.openstreetmap.josm.gui.conflict.tags.TagConflictResolverModel;
     
    6666    public static MyCombinePrimitiveResolverDialog getInstance() {
    6767        if (instance == null) {
    68             GuiHelper.runInEDTAndWait(() -> instance = new MyCombinePrimitiveResolverDialog(Main.parent));
     68            GuiHelper.runInEDTAndWait(() -> instance = new MyCombinePrimitiveResolverDialog(MainApplication.getMainFrame()));
    6969        }
    7070        return instance;
Note: See TracChangeset for help on using the changeset viewer.