diff options
| author | SammysHP <sven@sammyshp.de> | 2011-11-17 22:27:04 +0100 |
|---|---|---|
| committer | SammysHP <sven@sammyshp.de> | 2011-11-17 22:59:54 +0100 |
| commit | c22298e4e831b9aebd4779d567f7e48dcd8b274b (patch) | |
| tree | cd3f18b05cbd18b88621f1acfcc97c0097458019 /main/src/cgeo/geocaching/cgeocaches.java | |
| parent | 16224b5f392b3cbb50b97584bb0715bec73f3e9e (diff) | |
| download | cgeo-c22298e4e831b9aebd4779d567f7e48dcd8b274b.zip cgeo-c22298e4e831b9aebd4779d567f7e48dcd8b274b.tar.gz cgeo-c22298e4e831b9aebd4779d567f7e48dcd8b274b.tar.bz2 | |
Remove Format.LAT_LON_DECMINUTE_PIPE
This format is used often in c:geo, but is not very common outside of it. Usually coordinates are written without the pipe.
Diffstat (limited to 'main/src/cgeo/geocaching/cgeocaches.java')
| -rw-r--r-- | main/src/cgeo/geocaching/cgeocaches.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/cgeocaches.java b/main/src/cgeo/geocaching/cgeocaches.java index e8c8078..3eda003 100644 --- a/main/src/cgeo/geocaching/cgeocaches.java +++ b/main/src/cgeo/geocaching/cgeocaches.java @@ -14,7 +14,6 @@ import cgeo.geocaching.filter.cgFilterBySize; import cgeo.geocaching.filter.cgFilterByTrackables; import cgeo.geocaching.filter.cgFilterByType; import cgeo.geocaching.geopoint.Geopoint; -import cgeo.geocaching.geopoint.GeopointFormatter; import cgeo.geocaching.maps.CGeoMap; import cgeo.geocaching.sorting.CacheComparator; import cgeo.geocaching.sorting.DateComparator; @@ -612,7 +611,7 @@ public class cgeocaches extends AbstractListActivity { break; case COORDINATE: action = "planning"; - title = coords.format(GeopointFormatter.Format.LAT_LON_DECMINUTE_PIPE); + title = coords.toString(); setTitle(title); showProgress(true); setLoadingCaches(); @@ -639,7 +638,7 @@ public class cgeocaches extends AbstractListActivity { showProgress(true); setLoadingCaches(); } else { - title = coords.format(GeopointFormatter.Format.LAT_LON_DECMINUTE_PIPE); + title = coords.toString(); setTitle(title); showProgress(true); setLoadingCaches(); |
