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
9502d14f
Commit
9502d14f
authored
Jan 15, 2016
by
Sylvain Berfini
🐮
Browse files
Fix call from gtk app to not public symbol
parent
d31bd8dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
gtk/friendlist.c
View file @
9502d14f
...
...
@@ -718,15 +718,8 @@ void linphone_gtk_show_friends(void){
void
linphone_gtk_show_contact
(
LinphoneFriend
*
lf
,
GtkWidget
*
parent
){
GtkWidget
*
w
=
linphone_gtk_create_window
(
"contact"
,
parent
);
char
*
uri
;
const
char
*
name
;
const
char
*
name
=
linphone_friend_get_name
(
lf
)
;
const
LinphoneAddress
*
f_uri
=
linphone_friend_get_address
(
lf
);
LinphoneVCard
*
vcard
=
linphone_friend_get_vcard
(
lf
);
if
(
vcard
)
{
name
=
linphone_vcard_get_full_name
(
vcard
);
}
else
{
name
=
linphone_address_get_display_name
(
f_uri
);
}
uri
=
linphone_address_as_string_uri_only
(
f_uri
);
if
(
uri
)
{
...
...
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