Ignore:
Timestamp:
2011-09-02T17:18:16+02:00 (13 years ago)
Author:
akks
Message:

'FastDraw: recompile due to core change'

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

Legend:

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

    r26535 r26599  
    3030<project name="FastDraw" default="dist" basedir=".">
    3131    <!-- enter the SVN commit message -->
    32     <property name="commit.message" value="FastDraw: block spacebar"/>
     32    <property name="commit.message" value="FastDraw: recompile due to core change"/>
    3333    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    34     <property name="plugin.main.version" value="4201"/>
     34    <property name="plugin.main.version" value="4395"/>
    3535    <!--
    3636      ************************************************
  • applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java

    r26535 r26599  
    539539     * Updates shift and ctrl key states
    540540     */
    541     private void updateKeyModifiers(InputEvent e) {
     541    protected void updateKeyModifiers(InputEvent e) {
    542542        ctrl = (e.getModifiers() & ActionEvent.CTRL_MASK) != 0;
    543543        shift = (e.getModifiers() & ActionEvent.SHIFT_MASK) != 0;
     
    686686        if (w.isClosed()) line.closeLine();
    687687        oldNodes = w.getNodes();
    688         List <OsmPrimitive> wl = new ArrayList(); wl.add(w);
     688        List <OsmPrimitive> wl = new ArrayList<OsmPrimitive>(); wl.add(w);
    689689       
    690690        Command c = DeleteCommand.delete(getEditLayer(), wl, false);
Note: See TracChangeset for help on using the changeset viewer.