Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
58761be6
Commit
58761be6
authored
Oct 30, 2015
by
Ghislain MARY
Browse files
Do not double the colon character in the call duration label.
parent
a2ed27b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
gtk/incall_view.c
gtk/incall_view.c
+1
-1
No files found.
gtk/incall_view.c
View file @
58761be6
...
...
@@ -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
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment