Ignore:
Timestamp:
2015-07-01T22:49:33+02:00 (10 years ago)
Author:
donvip
Message:

[josm_print] update to JOSM 8554

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

Legend:

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

    r30812 r31329  
    55    <property name="commit.message" value="Added a field to specify the map scale."/>
    66    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    7     <property name="plugin.main.version" value="7676"/>
     7    <property name="plugin.main.version" value="8554"/>
    88
    99    <property name="plugin.author" value="Kai Pastor"/>
  • applications/editors/josm/plugins/print/src/org/openstreetmap/josm/plugins/print/PrintableMapView.java

    r30737 r31329  
    252252     */
    253253    public void paintMapScale(Graphics2D g2d, PageFormat pageFormat) {
    254         SystemOfMeasurement som = getSystemOfMeasurement();
     254        SystemOfMeasurement som = SystemOfMeasurement.getSystemOfMeasurement();
    255255        double dist100px = getDist100Pixel() / g2dFactor;
    256256        double dist = dist100px / som.aValue;
     
    411411     */
    412412    @Override
    413     protected List<Layer> getVisibleLayersInZOrder() {
     413    public List<Layer> getVisibleLayersInZOrder() {
    414414        ArrayList<Layer> layers = new ArrayList<>();
    415415        for (Layer l: mapView.getAllLayersAsList()) {
Note: See TracChangeset for help on using the changeset viewer.