diff options
author | Bananeweizen <bananeweizen@gmx.de> | 2012-01-08 12:52:41 +0100 |
---|---|---|
committer | Bananeweizen <bananeweizen@gmx.de> | 2012-01-08 12:52:41 +0100 |
commit | 867f3024ce13da0963306fd86242cd915a7858f8 (patch) | |
tree | 10df1798856d83c74bbf268812fb68ab191d7eef /main/src/cgeo/geocaching/apps | |
parent | ffee09f7c5e4867184fff6e4fef8f9c19a47f370 (diff) | |
download | cgeo-867f3024ce13da0963306fd86242cd915a7858f8.zip cgeo-867f3024ce13da0963306fd86242cd915a7858f8.tar.gz cgeo-867f3024ce13da0963306fd86242cd915a7858f8.tar.bz2 |
refactoring: clean up code around static maps
Diffstat (limited to 'main/src/cgeo/geocaching/apps')
-rw-r--r-- | main/src/cgeo/geocaching/apps/cache/navi/StaticMapApp.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/apps/cache/navi/StaticMapApp.java b/main/src/cgeo/geocaching/apps/cache/navi/StaticMapApp.java index 9c7064b..6a29895 100644 --- a/main/src/cgeo/geocaching/apps/cache/navi/StaticMapApp.java +++ b/main/src/cgeo/geocaching/apps/cache/navi/StaticMapApp.java @@ -5,7 +5,7 @@ import cgeo.geocaching.SearchResult; import cgeo.geocaching.cgCache; import cgeo.geocaching.cgGeo; import cgeo.geocaching.cgWaypoint; -import cgeo.geocaching.cgeosmaps; +import cgeo.geocaching.StaticMapsActivity; import cgeo.geocaching.activity.ActivityMixin; import cgeo.geocaching.geopoint.Geopoint; @@ -34,7 +34,7 @@ class StaticMapApp extends AbstractNavigationApp { } if (cache.getGeocode() != null) { - final Intent intent = new Intent(activity, cgeosmaps.class); + final Intent intent = new Intent(activity, StaticMapsActivity.class); intent.putExtra("geocode", cache.getGeocode().toUpperCase()); activity.startActivity(intent); return true; |