diff options
Diffstat (limited to 'src/cgeo/geocaching/cgeocoords.java')
| -rw-r--r-- | src/cgeo/geocaching/cgeocoords.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cgeo/geocaching/cgeocoords.java b/src/cgeo/geocaching/cgeocoords.java index 229b3a6..ca6e610 100644 --- a/src/cgeo/geocaching/cgeocoords.java +++ b/src/cgeo/geocaching/cgeocoords.java @@ -161,10 +161,10 @@ public class cgeocoords extends Dialog { eLat.setVisibility(View.VISIBLE); eLon.setVisibility(View.VISIBLE); if (latitude != null) { - eLat.setText(cgBase.formatCoordinate(latitude, "lat", true)); + eLat.setText(cgBase.formatLatitude(latitude, true)); } if (longitude != null) { - eLon.setText(cgBase.formatCoordinate(longitude, "lon", true)); + eLon.setText(cgBase.formatLongitude(longitude, true)); } break; case Deg: // DDD.DDDDD° |
