mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-06 21:33:08 +00:00
Do not double the colon character in the call duration label.
This commit is contained in:
parent
a2ed27b20d
commit
58761be632
1 changed files with 1 additions and 1 deletions
|
|
@ -835,7 +835,7 @@ void linphone_gtk_in_call_view_update_duration(LinphoneCall *call){
|
|||
int seconds=duration%60;
|
||||
int minutes=(duration/60)%60;
|
||||
int hours=duration/3600;
|
||||
snprintf(tmp,sizeof(tmp)-1,"%02i::%02i::%02i",hours,minutes,seconds);
|
||||
snprintf(tmp,sizeof(tmp)-1,"%02i:%02i:%02i",hours,minutes,seconds);
|
||||
gtk_label_set_text(GTK_LABEL(duration_label),tmp);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue