aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/mgcp_stat.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-21 09:48:27 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-21 09:48:27 +0000
commit4e2dc614bee84c03924c069aa0d1a9a1ad7260ed (patch)
treed7b146739aeaeeadc557498ee810da7b71f3d8b9 /gtk/mgcp_stat.c
parent725a18bc618e9e30db8162ce702de7ec5e0ab816 (diff)
Add a "register_dfilter_stat()", to register stats that take a display
filter as an argument on the command line and have a dialog box to enter the display filter through the GUI. Use it for all stats using "gtk_tap_dfilter_dlg_cb()". Add a top-level "stat_menu.h" file to declare "REGISTER_STAT_GROUP_E" for the benefit of the declaration of "register_dfilter_stat()" in the top-level "tap_dfilter_dlg.h". Rename the "stat_menu.h" in the gtk directory to "gtk_stat_menu.h", so as not to have two headers with the same name. Get rid of headers not declaring any functions not being used in the module. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15493 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/mgcp_stat.c')
-rw-r--r--gtk/mgcp_stat.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/gtk/mgcp_stat.c b/gtk/mgcp_stat.c
index 3349232963..1fc13ff188 100644
--- a/gtk/mgcp_stat.c
+++ b/gtk/mgcp_stat.c
@@ -39,8 +39,6 @@
#include <epan/epan.h>
#include <epan/value_string.h>
-#include <epan/stat_cmd_args.h>
-#include "stat_menu.h"
#include <epan/tap.h>
#include "../register.h"
#include "../plugins/mgcp/packet-mgcp.h"
@@ -51,6 +49,7 @@
#include "dlg_utils.h"
#include "../file.h"
#include "../globals.h"
+#include "../stat_menu.h"
#include "../tap_dfilter_dlg.h"
#include "tap_dfilter_dlg.h"
#include "gui_utils.h"
@@ -327,9 +326,7 @@ register_tap_listener_gtkmgcpstat(void)
{
/* We don't register this tap, if we don't have the mgcp plugin loaded.*/
if (find_tap_id("mgcp")) {
- register_stat_cmd_arg("mgcp,srt", gtk_mgcpstat_init);
-
- register_stat_menu_item("MGCP...", REGISTER_STAT_GROUP_RESPONSE_TIME,
- gtk_tap_dfilter_dlg_cb, NULL, NULL, &(mgcp_srt_dlg));
+ register_dfilter_stat(&mgcp_srt_dlg, "MGCP...",
+ REGISTER_STAT_GROUP_RESPONSE_TIME);
}
}