aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/WaypointPopup.java
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2012-05-05 18:53:59 +0200
committerBananeweizen <bananeweizen@gmx.de>2012-05-05 18:53:59 +0200
commit9c34c714484eb0791d02f85af396aeeba940d103 (patch)
treefd722280c9a99a5a795bcdb0ddb5a0eed8e83e89 /main/src/cgeo/geocaching/WaypointPopup.java
parentc3f97cce33fedadf7d33b6d603c31de872ca0a79 (diff)
downloadcgeo-9c34c714484eb0791d02f85af396aeeba940d103.zip
cgeo-9c34c714484eb0791d02f85af396aeeba940d103.tar.gz
cgeo-9c34c714484eb0791d02f85af396aeeba940d103.tar.bz2
fix #1459: Refactoring navigation menu
Diffstat (limited to 'main/src/cgeo/geocaching/WaypointPopup.java')
-rw-r--r--main/src/cgeo/geocaching/WaypointPopup.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/WaypointPopup.java b/main/src/cgeo/geocaching/WaypointPopup.java
index b1e5b08..9d65e87 100644
--- a/main/src/cgeo/geocaching/WaypointPopup.java
+++ b/main/src/cgeo/geocaching/WaypointPopup.java
@@ -84,7 +84,7 @@ public class WaypointPopup extends AbstractPopupActivity {
return;
}
- NavigationAppFactory.startDefaultNavigationApplication(app.currentGeo(), this, null, waypoint, null);
+ NavigationAppFactory.startDefaultNavigationApplication(this, null, waypoint, null);
}
/**
@@ -96,7 +96,7 @@ public class WaypointPopup extends AbstractPopupActivity {
showToast(res.getString(R.string.cache_coordinates_no));
return;
}
- NavigationAppFactory.startDefaultNavigationApplication2(app.currentGeo(), this, null, waypoint, null);
+ NavigationAppFactory.startDefaultNavigationApplication2(this, null, waypoint, null);
finish();
}
@@ -109,7 +109,7 @@ public class WaypointPopup extends AbstractPopupActivity {
@Override
protected void showNavigationMenu() {
- NavigationAppFactory.showNavigationMenu(app.currentGeo(), this, null, waypoint, null);
+ NavigationAppFactory.showNavigationMenu(this, null, waypoint, null);
}
@Override