- Timestamp:
- Jul 18, 2017 11:55:25 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/ios/ipjsua/ipjsuaAppDelegate.m
r5542 r5628 190 190 if (dev_ori == prev_ori) return; 191 191 192 NSLog(@"Device orientation changed: % d", (prev_ori = dev_ori));192 NSLog(@"Device orientation changed: %ld", (prev_ori = dev_ori)); 193 193 194 194 if (dev_ori >= UIDeviceOrientationPortrait && … … 272 272 alert.alertAction = @"Activate app"; 273 273 274 [[UIApplication sharedApplication] presentLocalNotificationNow:alert]; 274 dispatch_async(dispatch_get_main_queue(), 275 ^{[[UIApplication sharedApplication] 276 presentLocalNotificationNow:alert];}); 275 277 } 276 278
Note: See TracChangeset
for help on using the changeset viewer.