mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-28 16:49:20 +00:00
fix bug when filling comboboxes.
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@346 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
parent
767a8589c6
commit
a86d152dc9
1 changed files with 6 additions and 1 deletions
|
|
@ -594,14 +594,19 @@ void linphone_gtk_remove_proxy(GtkButton *button){
|
|||
if (cfg){
|
||||
linphone_core_remove_proxy_config(linphone_gtk_get_core(),cfg);
|
||||
linphone_gtk_show_sip_accounts(gtk_widget_get_toplevel(GTK_WIDGET(button)));
|
||||
/* also update the main window's list of identities*/
|
||||
linphone_gtk_load_identities();
|
||||
}
|
||||
}
|
||||
|
||||
void linphone_gtk_edit_proxy(GtkButton *button){
|
||||
GtkWidget *pb=gtk_widget_get_toplevel(GTK_WIDGET(button));
|
||||
LinphoneProxyConfig *cfg=linphone_gtk_get_selected_proxy_config(pb);
|
||||
if (cfg)
|
||||
if (cfg){
|
||||
linphone_gtk_show_proxy_config(pb,cfg);
|
||||
/* also update the main window's list of identities*/
|
||||
linphone_gtk_load_identities();
|
||||
}
|
||||
}
|
||||
|
||||
void linphone_gtk_show_parameters(void){
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue