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 14:09:17 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:00:44 +0300
commit3d8126cdf5bb4b76b032529f957c9723bd6e808d (patch)
treedb12d33cf41a9cd663d67964c9503029204a2493 /android/src/com/mapswithme/maps/widget/placepage
parentb95fc5602c66aaa060b6b40985ebbc71a7cc245a (diff)
[android] Fixed possible crashes.
Diffstat (limited to 'android/src/com/mapswithme/maps/widget/placepage')
-rw-r--r--android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java b/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java
index 46ba036ab3..4ce62ca0e4 100644
--- a/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java
+++ b/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java
@@ -634,7 +634,7 @@ public class PlacePageView extends RelativeLayout implements View.OnClickListene
if (ParsedMwmRequest.hasRequest())
{
final ParsedMwmRequest request = ParsedMwmRequest.getCurrentRequest();
- if (request.isPickPointMode())
+ if (ParsedMwmRequest.isPickPointMode())
request.setPointData(mMapObject.getLat(), mMapObject.getLon(), mMapObject.getName(), "");
request.sendResponseAndFinish(activity, true);
}