Update some refresh_interfaces_cb() calls appropriately.

svn path=/trunk/; revision=43520
This commit is contained in:
Guy Harris 2012-06-28 15:13:53 +00:00
parent b52000fc78
commit 28f866815a
1 changed files with 8 additions and 4 deletions

View File

@ -3107,8 +3107,10 @@ ok_remote_cb(GtkWidget *win _U_, gpointer *data _U_)
}
hide_interface(g_strdup(new_hide));
/* Refresh all places that are displaying an interface list. */
refresh_interfaces_cb();
/* Refresh all places that are displaying an interface list
that includes interfaces other than local interfaces
(such as remote interfaces). */
refresh_non_local_interface_lists();
}
static gboolean
@ -3166,8 +3168,10 @@ remove_remote_host(GtkWidget *w _U_, gpointer data _U_)
}
}
/* Refresh all places that are displaying an interface list. */
refresh_interfaces_cb();
/* Refresh all places that are displaying an interface list
that includes interfaces other than local interfaces
(such as remote interfaces). */
refresh_non_local_interface_lists();
}
}
#endif