mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-03 20:46:28 +00:00
UIChatCell: fix compilation
This commit is contained in:
parent
d111b84d6f
commit
114a6335b9
1 changed files with 2 additions and 2 deletions
|
|
@ -64,9 +64,9 @@
|
|||
- (NSString *)accessibilityValue {
|
||||
if (chatContentLabel.text) {
|
||||
return [NSString stringWithFormat:@"%@ - %@ (%li)", addressLabel.text, chatContentLabel.text,
|
||||
[unreadMessageLabel.text integerValue]];
|
||||
(long)[unreadMessageLabel.text integerValue]];
|
||||
} else {
|
||||
return [NSString stringWithFormat:@"%@ (%li)", addressLabel.text, [unreadMessageLabel.text integerValue]];
|
||||
return [NSString stringWithFormat:@"%@ (%li)", addressLabel.text, (long)[unreadMessageLabel.text integerValue]];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue