@@ -90,7 +90,7 @@ static void dispatch_notification_events(void)
9090 MCAutoStringRef t_text;
9191 // PM-2015-10-27: [[ Bug 16279 ]] Prevent crash when the payload is empty
9292 if (t_event -> text != nil )
93- /* UNCHECKED */ MCStringCreateWithCFString ((CFStringRef)t_event -> text, &t_text);
93+ /* UNCHECKED */ MCStringCreateWithCFStringRef ((CFStringRef)t_event -> text, &t_text);
9494 else
9595 t_text = MCValueRetain (kMCEmptyString );
9696
@@ -388,7 +388,7 @@ - (BOOL)application:(UIApplication *)p_application didFinishLaunchingWithOptions
388388 if (t_launch_url)
389389 {
390390 MCAutoStringRef t_url_text;
391- /* UNCHECKED */ MCStringCreateWithCFString ((CFStringRef)[t_launch_url absoluteString ], &t_url_text);
391+ /* UNCHECKED */ MCStringCreateWithCFStringRef ((CFStringRef)[t_launch_url absoluteString ], &t_url_text);
392392 MCValueAssign (m_launch_url, *t_url_text);
393393
394394 // HSC-2012-03-13 [[ Bug 10076 ]] Prevent Push Notification crashing when applicationDidBecomeActive is called multiple times
@@ -529,7 +529,7 @@ - (void)application:(UIApplication*)p_application didRegisterForRemoteNotificati
529529 if (t_registration_text != nil )
530530 {
531531 MCAutoStringRef t_device_token;
532- /* UNCHECKED */ MCStringCreateWithCFString ((CFStringRef)t_registration_text, &t_device_token);
532+ /* UNCHECKED */ MCStringCreateWithCFStringRef ((CFStringRef)t_registration_text, &t_device_token);
533533 MCValueAssign (m_device_token, *t_device_token);
534534
535535 // MW-2014-09-22: [[ Bug 13446 ]] Queue the event.
@@ -579,7 +579,7 @@ - (BOOL)application:(UIApplication *)p_application openURL:(NSURL*)p_url sourceA
579579 if (p_url != nil )
580580 {
581581 MCAutoStringRef t_url_text;
582- /* UNCHECKED */ MCStringCreateWithCFString ((CFStringRef)[p_url absoluteString ], &t_url_text);
582+ /* UNCHECKED */ MCStringCreateWithCFStringRef ((CFStringRef)[p_url absoluteString ], &t_url_text);
583583 MCValueAssign (m_launch_url, *t_url_text);
584584 if (m_did_become_active)
585585 MCNotificationPostUrlWakeUp (m_launch_url);
@@ -662,7 +662,7 @@ - (void)startPreparing
662662 if (m_pending_local_notification != nil )
663663 {
664664 MCAutoStringRef t_mc_reminder_text;
665- /* UNCHECKED */ MCStringCreateWithCFString ((CFStringRef)m_pending_local_notification, &t_mc_reminder_text);
665+ /* UNCHECKED */ MCStringCreateWithCFStringRef ((CFStringRef)m_pending_local_notification, &t_mc_reminder_text);
666666 MCNotificationPostLocalNotificationEvent (*t_mc_reminder_text);
667667
668668 // HSC-2012-03-13 [[ Bug 10076 ]] Prevent Push Notification crashing when applicationDidBecomeActive is called multiple times
@@ -672,7 +672,7 @@ - (void)startPreparing
672672 if (m_pending_push_notification != nil )
673673 {
674674 MCAutoStringRef t_mc_reminder_text;
675- /* UNCHECKED */ MCStringCreateWithCFString ((CFStringRef)m_pending_push_notification, &t_mc_reminder_text);
675+ /* UNCHECKED */ MCStringCreateWithCFStringRef ((CFStringRef)m_pending_push_notification, &t_mc_reminder_text);
676676 MCNotificationPostPushNotificationEvent (*t_mc_reminder_text);
677677
678678 // HSC-2012-03-13 [[ Bug 10076 ]] Prevent Push Notification crashing when applicationDidBecomeActive is called multiple times
0 commit comments