Ignore:
Timestamp:
2009-10-27T11:02:28+01:00 (15 years ago)
Author:
guggis
Message:

Updated to JOSM r2327

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

Legend:

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

    r17707 r18297  
    2525                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    2626                <attribute name="Plugin-Description" value="Several utilities that make your life easier: e.g. simplify way, join areas, jump to position."/>
    27                 <attribute name="Plugin-Mainversion" value="2166"/>
     27                <attribute name="Plugin-Mainversion" value="2327"/>
    2828                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    2929            </manifest>
  • applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/JumpToAction.java

    r17436 r18297  
    122122        Bounds b = OsmUrlToBounds.parse(url.getText());
    123123        if (b != null) {
    124             lat.setText(Double.toString((b.min.lat() + b.max.lat())/2));
    125             lon.setText(Double.toString((b.min.lon() + b.max.lon())/2));
     124            lat.setText(Double.toString((b.getMin().lat() + b.getMax().lat())/2));
     125            lon.setText(Double.toString((b.getMin().lon() + b.getMax().lon())/2));
    126126
    127127            int zoomLvl = 16;
Note: See TracChangeset for help on using the changeset viewer.