Skip to content
Snippets Groups Projects
Commit 31a08770 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

[#2443] Not much ...

parent 24c38591
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,8 @@ buttons_DATA = current.svg \ ...@@ -39,7 +39,8 @@ buttons_DATA = current.svg \
lock_confirmed.svg \ lock_confirmed.svg \
lock_error.svg \ lock_error.svg \
lock_off.svg \ lock_off.svg \
lock_unconfirmed.svg lock_unconfirmed.svg \
phone.svg
buttonsdir = $(datadir)/sflphone buttonsdir = $(datadir)/sflphone
EXTRA_DIST = $(buttons_DATA) $(icon_DATA) EXTRA_DIST = $(buttons_DATA) $(icon_DATA)
...@@ -253,14 +253,13 @@ GtkWidget* create_direct_ip_calls_tab() ...@@ -253,14 +253,13 @@ GtkWidget* create_direct_ip_calls_tab()
GtkTreeIter current_local_address_iter = iter; GtkTreeIter current_local_address_iter = iter;
gchar ** iface_list = NULL; gchar ** iface_list = NULL;
iface_list = (gchar**) dbus_get_all_ip_interface(); iface_list = (gchar**) dbus_get_all_ip_interface();
gchar ** iface = NULL; gchar ** iface;
gboolean iface_found = FALSE; gboolean iface_found = FALSE;
if (iface_list != NULL) { if (iface_list != NULL) {
for (iface = iface_list; *iface; iface++) { for (iface = iface_list; *iface; iface++) {
DEBUG("Interface %s", *iface);
gtk_list_store_append(ipInterfaceListStore, &iter ); gtk_list_store_append(ipInterfaceListStore, &iter );
gtk_list_store_set(ipInterfaceListStore, &iter, 0, *iface, -1 ); gtk_list_store_set(ipInterfaceListStore, &iter, 0, *iface, -1 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment