Ignore:
Timestamp:
2010-07-29T08:49:30+02:00 (14 years ago)
Author:
jttt
Message:

Adapt to latest JOSM

Location:
applications/editors/josm/plugins/turnrestrictions
Files:
2 added
2 edited

Legend:

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

    r21706 r22477  
    3333        <property name="commit.message" value="Update to josm core" />
    3434        <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    35         <property name="plugin.main.version" value="3210" />
     35        <property name="plugin.main.version" value="3392" />
    3636
    3737        <!--
     
    157157
    158158        <!--
    159         ************************** Publishing the plugin *********************************** 
     159        ************************** Publishing the plugin ***********************************
    160160        -->
    161161        <!--
    162                 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 
     162                ** extracts the JOSM release for the JOSM version in ../core and saves it in the
    163163                ** property ${coreversion.info.entry.revision}
    164164                **
     
    209209
    210210        <!--
    211                 ** commits the plugin.jar 
     211                ** commits the plugin.jar
    212212                -->
    213213        <target name="commit-dist">
    214214                <echo>
    215215        ***** Properties of published ${plugin.jar} *****
    216         Commit message    : '${commit.message}'                                 
     216        Commit message    : '${commit.message}'
    217217        Plugin-Mainversion: ${plugin.main.version}
    218218        JOSM build version: ${coreversion.info.entry.revision}
    219219        Plugin-Version    : ${version.entry.commit.revision}
    220         ***** / Properties of published ${plugin.jar} *****                                     
    221                                                
     220        ***** / Properties of published ${plugin.jar} *****
     221
    222222        Now commiting ${plugin.jar} ...
    223223        </echo>
  • applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/qa/TurnRestrictionLegSplitRequiredError.java

    r20622 r22477  
    1212import org.openstreetmap.josm.actions.SplitWayAction.SplitWayResult;
    1313import org.openstreetmap.josm.data.osm.Node;
     14import org.openstreetmap.josm.data.osm.OsmPrimitive;
    1415import org.openstreetmap.josm.data.osm.Way;
    1516import org.openstreetmap.josm.gui.DefaultNameFormatter;
     
    2829
    2930        /**
    30          * Create the issue 
    31          * 
    32          * @param parent the parent model 
     31         * Create the issue
     32         *
     33         * @param parent the parent model
    3334         * @param role the role of the way which should be splitted
    3435         * @param from the way with role 'from'
     
    4647
    4748        @Override
    48         public String getText() {               
     49        public String getText() {
    4950                String msg = null;
    5051                switch(role){
     
    5556                                role.getOsmRole(),
    5657                                interesect.getDisplayName(DefaultNameFormatter.getInstance()),
    57                                 to.getDisplayName(DefaultNameFormatter.getInstance())                           
     58                                to.getDisplayName(DefaultNameFormatter.getInstance())
    5859                        );
    5960                        break;
     
    7071                return msg;
    7172        }
    72        
     73
    7374        class SplitAction extends AbstractAction {
    7475                public SplitAction() {
     
    8384                        }
    8485                        SplitWayResult result = SplitWayAction.split(
    85                                         parent.getEditorModel().getLayer(),
    86                                         way,
    87                                         Collections.singletonList(interesect)
     86                                        parent.getEditorModel().getLayer(),
     87                                        way,
     88                                        Collections.singletonList(interesect),
     89                                        Collections.<OsmPrimitive>emptyList()
    8890                        );
    8991                        if (result != null){
    9092                                Main.main.undoRedo.add(result.getCommand());
    9193                        }
    92                 }               
     94                }
    9395        }
    9496}
Note: See TracChangeset for help on using the changeset viewer.