Ignore:
Timestamp:
2017-09-04T20:19:23+02:00 (7 years ago)
Author:
bastiK
Message:

see #15229 - deprecate ILatLon#getEastNorth() so ILatLon has no dependency on Main.proj

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/InspectPrimitiveDataText.java

    r12672 r12725  
    191191        if (bbox != null) {
    192192            add(tr("Bounding box: "), bbox.toStringCSV(", "));
    193             EastNorth bottomRigth = bbox.getBottomRight().getEastNorth();
    194             EastNorth topLeft = bbox.getTopLeft().getEastNorth();
     193            EastNorth bottomRigth = bbox.getBottomRight().getEastNorth(Main.getProjection());
     194            EastNorth topLeft = bbox.getTopLeft().getEastNorth(Main.getProjection());
    195195            add(tr("Bounding box (projected): "),
    196196                    Double.toString(topLeft.east()), ", ",
Note: See TracChangeset for help on using the changeset viewer.