From 94fd42b7f930cf725e91ccef5bad9cdc996ead9d Mon Sep 17 00:00:00 2001 From: vng Date: Mon, 24 Oct 2011 18:15:34 +0300 Subject: [PATCH] [mac leopard] Fix compilation errors. --- platform/apple_location_service.mm | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/platform/apple_location_service.mm b/platform/apple_location_service.mm index 4a28b14385..e1261bcd8e 100644 --- a/platform/apple_location_service.mm +++ b/platform/apple_location_service.mm @@ -29,7 +29,6 @@ public: m_locationManager = [[CLLocationManager alloc] init]; m_locationManager.delegate = m_objCppWrapper; m_locationManager.desiredAccuracy = kCLLocationAccuracyBest; - m_locationManager.purpose = @"Location services are needed to display your current position on the map."; } virtual ~AppleLocationService() @@ -53,23 +52,12 @@ public: if (![CLLocationManager locationServicesEnabled]) { // @TODO correctly handle situation in GUI when wifi is working and native is disabled - // m_observer.OnLocationStatusChanged(location::ENotSupported); + //m_observer.OnLocationStatusChanged(location::ENotSupported); } else { - switch([CLLocationManager authorizationStatus]) - { - case kCLAuthorizationStatusAuthorized: - case kCLAuthorizationStatusNotDetermined: - [m_locationManager startUpdatingLocation]; - m_observer.OnLocationStatusChanged(location::EStarted); - break; - case kCLAuthorizationStatusRestricted: - case kCLAuthorizationStatusDenied: - // @TODO correctly handle situation in GUI when wifi is working and native is disabled - //m_observer.OnLocationStatusChanged(location::EDisabledByUser); - break; - } + [m_locationManager startUpdatingLocation]; + m_observer.OnLocationStatusChanged(location::EStarted); } }