Ignore:
Timestamp:
2017-04-17T01:13:55+02:00 (7 years ago)
Author:
donvip
Message:

update to JOSM 11713

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

Legend:

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

    r32680 r33249  
    33    <property name="commit.message" value="Changed the constructor signature of the plugin main class"/>
    44    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    5     <property name="plugin.main.version" value="10580"/>
     5    <property name="plugin.main.version" value="11713"/>
    66   
    77    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/junctionchecking/src/org/openstreetmap/josm/plugins/JunctionChecker/JunctionCheckerMapMode.java

    r32596 r33249  
    3434    private static final long serialVersionUID = 3442408951505263850L;
    3535
    36     public JunctionCheckerMapMode(MapFrame mapFrame, String name, String desc) {
    37         super(name, "junctionchecker.png", desc, mapFrame, Cursor.getPredefinedCursor(Cursor.CROSSHAIR_CURSOR));
     36    public JunctionCheckerMapMode(String name, String desc) {
     37        super(name, "junctionchecker.png", desc, Cursor.getPredefinedCursor(Cursor.CROSSHAIR_CURSOR));
    3838    }
    3939
  • applications/editors/josm/plugins/junctionchecking/src/org/openstreetmap/josm/plugins/JunctionChecker/JunctionCheckerPlugin.java

    r32596 r33249  
    4343    public JunctionCheckerPlugin(PluginInformation info) {
    4444        super(info);
    45         jcMapMode = new JunctionCheckerMapMode(Main.map, "junctionchecking", tr("construct channel digraph and search for junctions"));
     45        jcMapMode = new JunctionCheckerMapMode("junctionchecking", tr("construct channel digraph and search for junctions"));
    4646        relationproducer = new RelationProducer(this);
    4747        cXMLReaderMK = new ColorSchemeXMLReader(COLORSCHEMEFILTERFILE);
Note: See TracChangeset for help on using the changeset viewer.