diff --git a/android/src/com/mapswithme/maps/downloader/CountrySuggestFragment.java b/android/src/com/mapswithme/maps/downloader/CountrySuggestFragment.java index 17471a563d..d59ea13287 100644 --- a/android/src/com/mapswithme/maps/downloader/CountrySuggestFragment.java +++ b/android/src/com/mapswithme/maps/downloader/CountrySuggestFragment.java @@ -12,9 +12,9 @@ import android.widget.TextView; import androidx.annotation.Nullable; -import com.mapswithme.maps.MwmActivity; import com.mapswithme.maps.R; import com.mapswithme.maps.base.BaseMwmFragment; +import com.mapswithme.maps.base.BaseMwmFragmentActivity; import com.mapswithme.maps.location.LocationHelper; import com.mapswithme.maps.widget.WheelProgressView; import com.mapswithme.util.StringUtils; @@ -215,7 +215,7 @@ public class CountrySuggestFragment extends BaseMwmFragment implements View.OnCl break; case R.id.btn__select_map: - MwmActivity activity = Utils.castTo(getActivity()); + BaseMwmFragmentActivity activity = Utils.castTo(getActivity()); activity.replaceFragment(DownloaderFragment.class, null, null); break;