aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/cgeowaypoint.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/cgeowaypoint.java')
-rw-r--r--main/src/cgeo/geocaching/cgeowaypoint.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/cgeowaypoint.java b/main/src/cgeo/geocaching/cgeowaypoint.java
index 9534594..06e279d 100644
--- a/main/src/cgeo/geocaching/cgeowaypoint.java
+++ b/main/src/cgeo/geocaching/cgeowaypoint.java
@@ -35,7 +35,7 @@ public class cgeowaypoint extends AbstractActivity {
private int id = -1;
private ProgressDialog waitDialog = null;
private cgGeo geo = null;
- private cgUpdateLoc geoUpdate = new update();
+ private UpdateLocationCallback geoUpdate = new update();
private Handler loadWaypointHandler = new Handler() {
@Override
@@ -279,10 +279,10 @@ public class cgeowaypoint extends AbstractActivity {
}
}
- private static class update extends cgUpdateLoc {
+ private static class update implements UpdateLocationCallback {
@Override
- public void updateLoc(cgGeo geo) {
+ public void updateLocation(cgGeo geo) {
// nothing
}
}