Changeset 18291 in osm


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

Updated to JOSM r2327

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

Legend:

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

    r18071 r18291  
    2626                <attribute name="Plugin-Description" value="Imports issues from OpenStreetBugs"/>
    2727                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/OpenStreetBugs"/>
    28                 <attribute name="Plugin-Mainversion" value="2264"/>
     28                <attribute name="Plugin-Mainversion" value="2327"/>
    2929                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3030            </manifest>
  • applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/api/DownloadAction.java

    r17520 r18291  
    5757        // add query params to the uri
    5858        StringBuilder sb = new StringBuilder(uri)
    59             .append("?b=").append(bounds.min.lat())
    60             .append("&t=").append(bounds.max.lat())
    61             .append("&l=").append(bounds.min.lon())
    62             .append("&r=").append(bounds.max.lon());
     59            .append("?b=").append(bounds.getMin().lat())
     60            .append("&t=").append(bounds.getMax().lat())
     61            .append("&l=").append(bounds.getMin().lon())
     62            .append("&r=").append(bounds.getMax().lon());
    6363        uri = sb.toString();
    6464
Note: See TracChangeset for help on using the changeset viewer.