aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/flow_graph.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-08-19 09:29:41 +0000
committerGuy Harris <guy@alum.mit.edu>2005-08-19 09:29:41 +0000
commitb2807e2ab65c7c96b38c4b08b4b491986719378a (patch)
tree76e4a11481ef4c452fdb6528527c87a5b32d6631 /gtk/flow_graph.c
parent3723032609805d89e3a155d6273833f7febdd899 (diff)
Move the APIs for registering and processing "-z" command-line arguments
and "Statistics" menu items into "stat.h" and "stat.c", to separate them from the core tapping APIs. A tap could conceivably not register as a "-z" command-line argument or "Statistics" menu item, and a stat could conceivably not be implemented as a tap, and dissectors that implement tapping points don't need the UI-related stuff from "stat.h", they just want the tap-related stuff in <epan/tap.h>. svn path=/trunk/; revision=15427
Diffstat (limited to 'gtk/flow_graph.c')
-rw-r--r--gtk/flow_graph.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/flow_graph.c b/gtk/flow_graph.c
index 2eaa75e1d2..8b2e77749d 100644
--- a/gtk/flow_graph.c
+++ b/gtk/flow_graph.c
@@ -33,7 +33,8 @@
#include "epan/filesystem.h"
#include "graph_analysis.h"
-#include "tap_menu.h"
+#include "../stat.h"
+#include "stat_menu.h"
#include "dlg_utils.h"
#include "ui_util.h"
#include "compat_macros.h"
@@ -556,8 +557,8 @@ void flow_graph_launch(GtkWidget *w _U_, gpointer data _U_)
void
register_tap_listener_flow_graph(void)
{
- register_tap_listener_cmd_arg("flow_graph",flow_graph_init_tap);
- register_tap_menu_item("Flow graph", REGISTER_TAP_GROUP_NONE,
+ register_stat_cmd_arg("flow_graph",flow_graph_init_tap);
+ register_stat_menu_item("Flow graph", REGISTER_STAT_GROUP_NONE,
flow_graph_launch, NULL, NULL, NULL);
}