fix cast blocking build

This commit is contained in:
Benjamin Reis 2017-11-16 14:50:58 +01:00
parent 99cd73a52c
commit 20879f9894
2 changed files with 5 additions and 3 deletions

View file

@ -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;

View file

@ -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;
}