mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-24 22:58:13 +00:00
Minor UI fixes. Change linphone version to 1.1
This commit is contained in:
parent
260f57f6d5
commit
f279fd1160
3 changed files with 7 additions and 5 deletions
|
|
@ -558,6 +558,7 @@ int callCount(LinphoneCore* lc) {
|
|||
|
||||
NSMutableString* ms = [[NSMutableString alloc] init ];
|
||||
const MSList* calls = linphone_core_get_calls(lc);
|
||||
bool isFirst = true;
|
||||
while (calls) {
|
||||
LinphoneCall* call = (LinphoneCall*)calls->data;
|
||||
if (isInConference(call)) {
|
||||
|
|
@ -565,9 +566,9 @@ int callCount(LinphoneCore* lc) {
|
|||
|
||||
const char* n = linphone_address_get_display_name(addr);
|
||||
if (n)
|
||||
[ms appendFormat:@"%s ", n, nil];
|
||||
[ms appendFormat:(isFirst?@"%s":@", %s"), n, nil];
|
||||
else
|
||||
[ms appendFormat:@"%s ", linphone_address_get_username(addr), nil];
|
||||
[ms appendFormat:(isFirst?@"%s":@", %s"), linphone_address_get_username(addr), nil];
|
||||
|
||||
//if (call == selectedCall)
|
||||
// [self updateActive:YES cell:cell];
|
||||
|
|
@ -578,6 +579,7 @@ int callCount(LinphoneCore* lc) {
|
|||
cell.accessoryType = UITableViewCellAccessoryCheckmark;
|
||||
|
||||
}
|
||||
isFirst = false;
|
||||
}
|
||||
calls = calls->next;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,11 +19,11 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>3.4.9</string>
|
||||
<string>3.4.10</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0.7.3</string>
|
||||
<string>1.1</string>
|
||||
<key>NSMainNibFile</key>
|
||||
<string>PhoneMainView</string>
|
||||
<key>UIApplicationExitsOnSuspend</key>
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 0d04b9451bf845e8bd7f047504f689292e099554
|
||||
Subproject commit 53b732a7d32fe1f3005f39e446fb860de0afa97c
|
||||
Loading…
Add table
Reference in a new issue