diff options
author | Bananeweizen <bananeweizen@gmx.de> | 2012-08-26 14:01:50 +0200 |
---|---|---|
committer | Bananeweizen <bananeweizen@gmx.de> | 2012-08-26 14:01:50 +0200 |
commit | e989666a734d4f36a20f70ed6b83339c2b0b4b54 (patch) | |
tree | d46d90af64a81da53824a949e05cc4be5c3cfbd1 /main/src/cgeo/geocaching/EditWaypointActivity.java | |
parent | 36d9c61be952cbfc6d62016bf1c6538b5db13f3d (diff) | |
download | cgeo-e989666a734d4f36a20f70ed6b83339c2b0b4b54.zip cgeo-e989666a734d4f36a20f70ed6b83339c2b0b4b54.tar.gz cgeo-e989666a734d4f36a20f70ed6b83339c2b0b4b54.tar.bz2 |
fix #1893: remove go4cache
Diffstat (limited to 'main/src/cgeo/geocaching/EditWaypointActivity.java')
-rw-r--r-- | main/src/cgeo/geocaching/EditWaypointActivity.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/main/src/cgeo/geocaching/EditWaypointActivity.java b/main/src/cgeo/geocaching/EditWaypointActivity.java index d32be66..ef2a2cc 100644 --- a/main/src/cgeo/geocaching/EditWaypointActivity.java +++ b/main/src/cgeo/geocaching/EditWaypointActivity.java @@ -66,8 +66,6 @@ public class EditWaypointActivity extends AbstractActivity { lookup = waypoint.getLookup(); own = waypoint.isUserDefined(); - app.setAction(geocode); - if (waypoint.getCoords() != null) { ((Button) findViewById(R.id.buttonLatitude)).setText(waypoint.getCoords().format(GeopointFormatter.Format.LAT_DECMINUTE)); ((Button) findViewById(R.id.buttonLongitude)).setText(waypoint.getCoords().format(GeopointFormatter.Format.LON_DECMINUTE)); @@ -126,10 +124,6 @@ public class EditWaypointActivity extends AbstractActivity { setTitle(res.getString(R.string.waypoint_edit_title)); } - if (geocode != null) { - app.setAction(geocode); - } - Button buttonLat = (Button) findViewById(R.id.buttonLatitude); buttonLat.setOnClickListener(new coordDialogListener()); Button buttonLon = (Button) findViewById(R.id.buttonLongitude); |