mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
Merge branch 'master' of git.linphone.org:linphone-iphone-private
This commit is contained in:
commit
c422fd43b1
1 changed files with 10 additions and 1 deletions
|
|
@ -480,7 +480,16 @@ int callCount(LinphoneCore* lc) {
|
|||
else
|
||||
[ms appendFormat:@"%02i sec", duration, nil];
|
||||
} else {
|
||||
[ms appendFormat:@"%s", linphone_call_state_to_string(linphone_call_get_state(call)), nil];
|
||||
switch (linphone_call_get_state(call)) {
|
||||
case LinphoneCallPaused:
|
||||
[ms appendFormat:@"%@", NSLocalizedString(@"Paused", nil), nil];
|
||||
break;
|
||||
case LinphoneCallOutgoingProgress:
|
||||
[ms appendFormat:@"%@...", NSLocalizedString(@"In progress", nil), nil];
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
[cell.detailTextLabel setText:ms];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue