Ignore:
Timestamp:
2013-01-31T14:39:51+01:00 (12 years ago)
Author:
bastik
Message:

adapt to changes in JOSM core ([josm5679] and [josm5681])

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

Legend:

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

    r27852 r29222  
    3232    <property name="commit.message" value="Changed the constructor signature of the plugin main class; updated build.xml"/>
    3333    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    34     <property name="plugin.main.version" value="4980"/>
     34    <property name="plugin.main.version" value="5679"/>
     35    <!--
     36      ************************************************
     37      ** should not be necessary to change the following properties
     38     -->
    3539    <property name="josm" location="../../core/dist/josm-custom.jar"/>
    3640    <property name="plugin.dist.dir" value="../../dist"/>
  • applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OpenVisibleAction.java

    r27852 r29222  
    129129                throw new IllegalStateException();
    130130            }
    131             r.data.storageFile = file;
    132             GpxLayer gpxLayer = new GpxLayer(r.data, fn);
     131            r.getGpxData().storageFile = file;
     132            GpxLayer gpxLayer = new GpxLayer(r.getGpxData(), fn);
    133133            Main.main.addLayer(gpxLayer);
    134             Main.main.addLayer(new MarkerLayer(r.data, tr("Markers from {0}", fn), file, gpxLayer));
     134            Main.main.addLayer(new MarkerLayer(r.getGpxData(), tr("Markers from {0}", fn), file, gpxLayer));
    135135
    136136        } else {
Note: See TracChangeset for help on using the changeset viewer.