Ignore:
Timestamp:
2009-10-27T10:49:56+01:00 (15 years ago)
Author:
guggis
Message:

Updated to JOSM r2327

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/osmarender/src/org/openstreetmap/josm/plugins/osmarender/OsmarenderPlugin.java

    r18061 r18293  
    138138    private void writeGenerated(Bounds b) throws IOException {
    139139        String bounds_tag = "<bounds " +
    140             "minlat=\"" + b.min.lat() + "\" " +
    141             "maxlat=\"" + b.max.lat() + "\" " +
    142             "minlon=\"" + b.min.lon() + "\" " +
    143             "maxlon=\"" + b.max.lon() + "\" " + "/>";
     140            "minlat=\"" + b.getMin().lat() + "\" " +
     141            "maxlat=\"" + b.getMax().lat() + "\" " +
     142            "minlon=\"" + b.getMin().lon() + "\" " +
     143            "maxlon=\"" + b.getMax().lon() + "\" " + "/>";
    144144
    145145        BufferedReader reader = new BufferedReader(
Note: See TracChangeset for help on using the changeset viewer.