diff options
| author | Michael Keppler <michael.keppler@gmx.de> | 2014-04-24 06:16:00 +0200 |
|---|---|---|
| committer | Michael Keppler <michael.keppler@gmx.de> | 2014-04-24 06:16:00 +0200 |
| commit | 0fa22217a447ff4191e4e3b8a6d8932d86f91863 (patch) | |
| tree | 5e66a5498aa5c1c4d65e3ae7ff3dc9658e82830d | |
| parent | 319d551c674d4d164127c5f86e4866bb0d62c8a4 (diff) | |
| download | cgeo-0fa22217a447ff4191e4e3b8a6d8932d86f91863.zip cgeo-0fa22217a447ff4191e4e3b8a6d8932d86f91863.tar.gz cgeo-0fa22217a447ff4191e4e3b8a6d8932d86f91863.tar.bz2 | |
#3784: comment PendingIntent of MapsWithMe
| -rw-r--r-- | main/src/cgeo/geocaching/CacheDetailActivity.java | 2 | ||||
| -rw-r--r-- | main/src/cgeo/geocaching/apps/cachelist/MapsWithMeCacheListApp.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/CacheDetailActivity.java b/main/src/cgeo/geocaching/CacheDetailActivity.java index ccd8a73..da8cc7d 100644 --- a/main/src/cgeo/geocaching/CacheDetailActivity.java +++ b/main/src/cgeo/geocaching/CacheDetailActivity.java @@ -199,7 +199,7 @@ public class CacheDetailActivity extends AbstractViewPagerActivity<CacheDetailAc guid = extras.getString(Intents.EXTRA_GUID); } - // integration with MapsWithMe + // When clicking a cache in MapsWithMe, we get back a PendingIntent if (StringUtils.isEmpty(geocode)) { geocode = MapsWithMeCacheListApp.getCacheFromMapsWithMe(this, getIntent()); } diff --git a/main/src/cgeo/geocaching/apps/cachelist/MapsWithMeCacheListApp.java b/main/src/cgeo/geocaching/apps/cachelist/MapsWithMeCacheListApp.java index d3f68be..ba177f0 100644 --- a/main/src/cgeo/geocaching/apps/cachelist/MapsWithMeCacheListApp.java +++ b/main/src/cgeo/geocaching/apps/cachelist/MapsWithMeCacheListApp.java @@ -43,8 +43,8 @@ public class MapsWithMeCacheListApp extends AbstractApp implements CacheListApp } /** - * get cache code from an invocation of MapsWithMe - * + * get cache code from a PendingIntent after an invocation of MapsWithMe + * * @return */ @Nullable |
