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:
authorv.mikhaylenko <v.mikhaylenko@corp.mail.ru>2015-06-26 14:48:21 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:53:02 +0300
commit4940b5ad90ad94ddc1e6ef95252d9846deb2714e (patch)
tree2efffef6d9f21c68ff26a77793b53f223e0d1c37 /iphone/Maps/Classes/MWMPlacePageViewManager.mm
parentecedd34e27cb7cf90b9d13418b319f1cbea87165 (diff)
[ios] Fixed bug with bookmark/poi/my position sharing
Diffstat (limited to 'iphone/Maps/Classes/MWMPlacePageViewManager.mm')
-rw-r--r--iphone/Maps/Classes/MWMPlacePageViewManager.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/iphone/Maps/Classes/MWMPlacePageViewManager.mm b/iphone/Maps/Classes/MWMPlacePageViewManager.mm
index 741ea97194..8b868705ec 100644
--- a/iphone/Maps/Classes/MWMPlacePageViewManager.mm
+++ b/iphone/Maps/Classes/MWMPlacePageViewManager.mm
@@ -178,7 +178,7 @@ typedef NS_ENUM(NSUInteger, MWMPlacePageManagerState)
- (void)share
{
MWMPlacePageEntity * entity = self.entity;
- ShareInfo * info = [[ShareInfo alloc] initWithText:entity.title gX:entity.point.x gY:entity.point.y myPosition:NO];
+ ShareInfo * info = [[ShareInfo alloc] initWithText:entity.title lat:entity.point.x lon:entity.point.y myPosition:NO];
self.actionSheet = [[ShareActionSheet alloc] initWithInfo:info viewController:self.ownerViewController];
UIView * parentView = self.ownerViewController.view;