From f11a9f8fd9f4a53195168518f6ef1efe782f1cf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Tue, 26 May 2015 11:13:08 +0200 Subject: prefix Reachability with "MGL" to avoid linking conflicts and app store rejections --- platform/darwin/reachability.m | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'platform/darwin') diff --git a/platform/darwin/reachability.m b/platform/darwin/reachability.m index b0818b8838..d1413321b7 100644 --- a/platform/darwin/reachability.m +++ b/platform/darwin/reachability.m @@ -25,7 +25,7 @@ POSSIBILITY OF SUCH DAMAGE. */ -#import "Reachability.h" +#import #import #import @@ -38,7 +38,7 @@ NSString *const kReachabilityChangedNotification = @"kReachabilityChangedNotification"; -@interface Reachability () +@interface MGLReachability () @property (nonatomic, assign) SCNetworkReachabilityRef reachabilityRef; @property (nonatomic, strong) dispatch_queue_t reachabilitySerialQueue; @@ -73,7 +73,7 @@ static void TMReachabilityCallback(SCNetworkReachabilityRef target, SCNetworkRea { #pragma unused (target) - Reachability *reachability = ((__bridge Reachability*)info); + MGLReachability *reachability = ((__bridge MGLReachability*)info); // We probably don't need an autoreleasepool here, as GCD docs state each queue has its own autorelease pool, // but what the heck eh? @@ -84,13 +84,13 @@ static void TMReachabilityCallback(SCNetworkReachabilityRef target, SCNetworkRea } -@implementation Reachability +@implementation MGLReachability #pragma mark - Class Constructor Methods +(instancetype)reachabilityWithHostName:(NSString*)hostname { - return [Reachability reachabilityWithHostname:hostname]; + return [MGLReachability reachabilityWithHostname:hostname]; } +(instancetype)reachabilityWithHostname:(NSString*)hostname -- cgit v1.2.1