diff options
| author | Bananeweizen <Bananeweizen@gmx.de> | 2012-12-30 10:54:43 +0100 |
|---|---|---|
| committer | Bananeweizen <Bananeweizen@gmx.de> | 2012-12-30 10:54:43 +0100 |
| commit | aba2786ec38c1653b92c3affd88d2060c1d6b8df (patch) | |
| tree | 5c71104761fd63763fa6835a10e0a480372fab64 /main/src/cgeo/geocaching/apps/cache/WhereYouGoApp.java | |
| parent | cb94f1f020596be019cc4c000a93a318600d7f37 (diff) | |
| download | cgeo-aba2786ec38c1653b92c3affd88d2060c1d6b8df.zip cgeo-aba2786ec38c1653b92c3affd88d2060c1d6b8df.tar.gz cgeo-aba2786ec38c1653b92c3affd88d2060c1d6b8df.tar.bz2 | |
fix #2054: Navigate options are different
Diffstat (limited to 'main/src/cgeo/geocaching/apps/cache/WhereYouGoApp.java')
| -rw-r--r-- | main/src/cgeo/geocaching/apps/cache/WhereYouGoApp.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/apps/cache/WhereYouGoApp.java b/main/src/cgeo/geocaching/apps/cache/WhereYouGoApp.java index 8c16eaf..8c06d7a 100644 --- a/main/src/cgeo/geocaching/apps/cache/WhereYouGoApp.java +++ b/main/src/cgeo/geocaching/apps/cache/WhereYouGoApp.java @@ -4,13 +4,13 @@ import cgeo.geocaching.R; import cgeo.geocaching.cgCache; import cgeo.geocaching.enumerations.CacheType; -class WhereYouGoApp extends AbstractGeneralApp { - WhereYouGoApp() { +public class WhereYouGoApp extends AbstractGeneralApp { + public WhereYouGoApp() { super(getString(R.string.cache_menu_whereyougo), "menion.android.whereyougo"); } @Override public boolean isEnabled(cgCache cache) { - return cache != null && cache.getType() == CacheType.WHERIGO; + return cache.getType() == CacheType.WHERIGO; } } |
