From 38e361ab3010e13de96f827fa7d5eeb009d9f457 Mon Sep 17 00:00:00 2001 From: Rainer Date: Tue, 9 Aug 2011 22:00:18 +0200 Subject: Fixing incorrect forwarding of map activity lifecycle calls --- src/cgeo/geocaching/mapcommon/MapBase.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cgeo/geocaching/mapcommon/MapBase.java') diff --git a/src/cgeo/geocaching/mapcommon/MapBase.java b/src/cgeo/geocaching/mapcommon/MapBase.java index cd4c12d..1f967a0 100644 --- a/src/cgeo/geocaching/mapcommon/MapBase.java +++ b/src/cgeo/geocaching/mapcommon/MapBase.java @@ -1,12 +1,12 @@ package cgeo.geocaching.mapcommon; -import cgeo.geocaching.mapinterfaces.ActivityImpl; import android.app.Activity; import android.content.res.Resources; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.view.View; +import cgeo.geocaching.mapinterfaces.ActivityImpl; /** * Base class for the map activity. Delegates base class calls to the @@ -39,11 +39,11 @@ public abstract class MapBase { } public void onStop() { - mapActivity.superOnResume(); + mapActivity.superOnStop(); } public void onPause() { - mapActivity.superOnResume(); + mapActivity.superOnPause(); } public void onDestroy() { -- cgit v1.1