diff options
author | Samuel Tardieu <sam@rfc1149.net> | 2012-04-27 12:37:43 +0200 |
---|---|---|
committer | Samuel Tardieu <sam@rfc1149.net> | 2012-04-27 12:37:43 +0200 |
commit | 16fad207ba63733a572a3e0aad171a677f85a44d (patch) | |
tree | bbe01baaebb8305d5c6a11dfac3f1f3f9d758d35 /main/src/cgeo/geocaching/apps/cache | |
parent | d89efa23659dae79735292c2336d7f3fb103a918 (diff) | |
download | cgeo-16fad207ba63733a572a3e0aad171a677f85a44d.zip cgeo-16fad207ba63733a572a3e0aad171a677f85a44d.tar.gz cgeo-16fad207ba63733a572a3e0aad171a677f85a44d.tar.bz2 |
Remove Now from methods of IGeoData
Diffstat (limited to 'main/src/cgeo/geocaching/apps/cache')
-rw-r--r-- | main/src/cgeo/geocaching/apps/cache/navi/GoogleNavigationApp.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/apps/cache/navi/GoogleNavigationApp.java b/main/src/cgeo/geocaching/apps/cache/navi/GoogleNavigationApp.java index e5001da..fb72157 100644 --- a/main/src/cgeo/geocaching/apps/cache/navi/GoogleNavigationApp.java +++ b/main/src/cgeo/geocaching/apps/cache/navi/GoogleNavigationApp.java @@ -51,7 +51,7 @@ class GoogleNavigationApp extends AbstractNavigationApp { } private static boolean navigateToCoordinates(IGeoData geo, Activity activity, final Geopoint coords) { - final Geopoint coordsNow = geo == null ? null : geo.getCoordsNow(); + final Geopoint coordsNow = geo == null ? null : geo.getCoords(); // Google Navigation if (Settings.isUseGoogleNavigation()) { |