Changeset 16625 in osm for applications


Ignore:
Timestamp:
2009-07-21T20:44:28+02:00 (15 years ago)
Author:
jttt
Message:

Make it work without Main.ds

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

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/surveyor/.classpath

    r3081 r16625  
    44        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
    55        <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
    6         <classpathentry combineaccessrules="false" kind="src" path="/josm-plugin-livegps"/>
     6        <classpathentry combineaccessrules="false" kind="src" path="/livegps"/>
    77        <classpathentry kind="output" path="bin"/>
    88</classpath>
  • applications/editors/josm/plugins/surveyor/build.xml

    r16409 r16625  
    3737                <attribute name="Plugin-Description" value="Allow adding markers/nodes on current gps positions."/>
    3838                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Surveyor"/>
    39                 <attribute name="Plugin-Mainversion" value="1755"/>
     39                <attribute name="Plugin-Mainversion" value="1815"/>
    4040                <attribute name="Plugin-Requires" value="livegps"/>
    4141                <attribute name="Plugin-Stage" value="60"/>
  • applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/action/SetNodeAction.java

    r16409 r16625  
    7171        synchronized(LiveGpsLock.class) {
    7272            Main.map.mapView.getEditLayer().data.nodes.add(node);
    73             Main.ds.setSelected(node);
     73            Main.main.getCurrentDataSet().setSelected(node);
    7474        }
    7575        Main.map.repaint();
Note: See TracChangeset for help on using the changeset viewer.