mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-27 07:59:20 +00:00
fix cast blocking build
This commit is contained in:
parent
99cd73a52c
commit
20879f9894
2 changed files with 5 additions and 3 deletions
|
|
@ -46,13 +46,15 @@
|
|||
limeRecognizer.numberOfTapsRequired = 1;
|
||||
[_LIMEKO addGestureRecognizer:limeRecognizer];
|
||||
_LIMEKO.userInteractionEnabled = YES;
|
||||
|
||||
UITapGestureRecognizer *resendRecognizer =
|
||||
[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(onResend)];
|
||||
resendRecognizer.numberOfTapsRequired = 1;
|
||||
[_imdmIcon addGestureRecognizer:resendRecognizer];
|
||||
_imdmIcon.userInteractionEnabled = YES;
|
||||
[_imdmLabel addGestureRecognizer:resendRecognizer];
|
||||
UITapGestureRecognizer *resendRecognizer2 =
|
||||
[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(onResend)];
|
||||
resendRecognizer2.numberOfTapsRequired = 1;
|
||||
[_imdmLabel addGestureRecognizer:resendRecognizer2];
|
||||
_imdmLabel.userInteractionEnabled = YES;
|
||||
|
||||
return self;
|
||||
|
|
|
|||
|
|
@ -367,7 +367,7 @@
|
|||
NSLog(@"description = %@", [exception description]);
|
||||
return FALSE;
|
||||
}
|
||||
NSLog(@"Deleted contacts %lu", cnContacts.count);
|
||||
NSLog(@"Deleted contacts %lu", (unsigned long)cnContacts.count);
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue