summaryrefslogtreecommitdiff
path: root/ui/gtk/voip_calls_dlg.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-11-14 10:42:26 -0800
committerGuy Harris <guy@alum.mit.edu>2014-11-14 18:42:50 +0000
commita21436eaeddb4979950e569f8004d84680af8075 (patch)
tree34b127324573aafc11d7a8bab6bbf5e84e8ed8de /ui/gtk/voip_calls_dlg.c
parent0e64efc81a2ee96bcfa8ba43c4aab2e1b0a2d95f (diff)
downloadwireshark-a21436eaeddb4979950e569f8004d84680af8075.tar.gz
tap_ui -> stat_tap_ui.
The old routine had stat_ in the name, as the expectation was that they were for statistics taps; that's still the expectation, so have stat_ in the data structure and routine names. Change-Id: Ic98d011012b8641173d41fa0ec4f4e625614370a Reviewed-on: https://code.wireshark.org/review/5303 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/gtk/voip_calls_dlg.c')
-rw-r--r--ui/gtk/voip_calls_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/voip_calls_dlg.c b/ui/gtk/voip_calls_dlg.c
index 528f07154b..576936f266 100644
--- a/ui/gtk/voip_calls_dlg.c
+++ b/ui/gtk/voip_calls_dlg.c
@@ -921,7 +921,7 @@ voip_flows_launch(GtkAction *action _U_, gpointer user_data _U_)
}
/****************************************************************************/
-static tap_ui voip_calls_ui = {
+static stat_tap_ui voip_calls_ui = {
REGISTER_STAT_GROUP_GENERIC,
NULL,
"voip,calls",
@@ -934,6 +934,6 @@ static tap_ui voip_calls_ui = {
void
register_tap_listener_voip_calls_dlg(void)
{
- register_tap_ui(&voip_calls_ui, NULL);
+ register_stat_tap_ui(&voip_calls_ui, NULL);
}