Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorАлександр Зацепин <az@mapswithme.com>2018-04-09 16:04:08 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2018-04-10 13:17:36 +0300
commit254a319a0a472382b1eb2d6ec6cc08044cd28408 (patch)
tree1323f0586425e53d444ed67cdc64d000870edea2 /android/src/com/mapswithme/maps/editor
parent8f94c517b15ae323896c55618b36e5d2cbd073b4 (diff)
[android] Extracted dialog util methods into DialogUtils class
Diffstat (limited to 'android/src/com/mapswithme/maps/editor')
-rw-r--r--android/src/com/mapswithme/maps/editor/EditorHostFragment.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/android/src/com/mapswithme/maps/editor/EditorHostFragment.java b/android/src/com/mapswithme/maps/editor/EditorHostFragment.java
index 84e2aa993e..750bbee0d1 100644
--- a/android/src/com/mapswithme/maps/editor/EditorHostFragment.java
+++ b/android/src/com/mapswithme/maps/editor/EditorHostFragment.java
@@ -26,6 +26,7 @@ import com.mapswithme.maps.editor.data.LocalizedStreet;
import com.mapswithme.maps.widget.SearchToolbarController;
import com.mapswithme.maps.widget.ToolbarController;
import com.mapswithme.util.ConnectionState;
+import com.mapswithme.util.DialogUtils;
import com.mapswithme.util.UiUtils;
import com.mapswithme.util.Utils;
import com.mapswithme.util.statistics.Statistics;
@@ -332,7 +333,7 @@ public class EditorHostFragment extends BaseMwmToolbarFragment
else
{
Statistics.INSTANCE.trackEditorError(mIsNewObject);
- UiUtils.showAlertDialog(getActivity(), R.string.downloader_no_space_title);
+ DialogUtils.showAlertDialog(getActivity(), R.string.downloader_no_space_title);
}
}