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:
authorDmitry Yunitsky <yunik@mapswithme.com>2015-08-11 17:48:09 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:01:16 +0300
commit1a20301cbdf06c0e737ef9d3ce2607179a7f00eb (patch)
tree4d03f1eed013b93df8c783b7037d787ef808557c /android/src/com/mapswithme/maps/widget/placepage
parentccf1aabc90c6ad4701e506f8dbe21c919fe9056e (diff)
[android] Refactoring and fixes.
Diffstat (limited to 'android/src/com/mapswithme/maps/widget/placepage')
-rw-r--r--android/src/com/mapswithme/maps/widget/placepage/BasePlacePageAnimationController.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/src/com/mapswithme/maps/widget/placepage/BasePlacePageAnimationController.java b/android/src/com/mapswithme/maps/widget/placepage/BasePlacePageAnimationController.java
index c402c8741e..f3bdaf36ca 100644
--- a/android/src/com/mapswithme/maps/widget/placepage/BasePlacePageAnimationController.java
+++ b/android/src/com/mapswithme/maps/widget/placepage/BasePlacePageAnimationController.java
@@ -9,7 +9,7 @@ import android.view.ViewConfiguration;
import android.view.ViewGroup;
import android.widget.ScrollView;
-import com.mapswithme.maps.MWMApplication;
+import com.mapswithme.maps.MwmApplication;
import com.mapswithme.maps.R;
import com.mapswithme.maps.bookmarks.data.MapObject;
import com.mapswithme.maps.widget.placepage.PlacePageView.State;
@@ -19,7 +19,7 @@ import com.mapswithme.maps.widget.placepage.PlacePageView.State;
*/
public abstract class BasePlacePageAnimationController
{
- protected static final int DURATION = MWMApplication.get().getResources().getInteger(R.integer.anim_duration_default);
+ protected static final int DURATION = MwmApplication.get().getResources().getInteger(R.integer.anim_duration_default);
protected static final boolean NO_ANIMATION = (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB);
protected State mState = State.HIDDEN;