diff options
author | Gerald Combs <gerald@wireshark.org> | 2015-10-13 17:12:20 -0700 |
---|---|---|
committer | Michael Mann <mmann78@netscape.net> | 2015-12-13 04:25:13 +0000 |
commit | 76dd8a27b77aa959d4f6c6fb09c48b2e79d9cd47 (patch) | |
tree | b76e5c210abb2503ffc19276b928fc8d55dc208e /epan/prefs.c | |
parent | f06bbe37c12c7788702cc8649e3da1f18c730931 (diff) | |
download | wireshark-76dd8a27b77aa959d4f6c6fb09c48b2e79d9cd47.tar.gz wireshark-76dd8a27b77aa959d4f6c6fb09c48b2e79d9cd47.tar.bz2 wireshark-76dd8a27b77aa959d4f6c6fb09c48b2e79d9cd47.zip |
Start deprecating the capture info API.
The GTK+ UI has a capture info dialog which shows a summary of captured
protocols, including IPX (!), NetBIOS (!!) and VINES (!!OMG!!). It's
been disabled by default since 2006 (g59aa9e40).
Remove the preference in the Qt UI capture pane. It's still available
via the advanced prefs. Add comments in various parts of the code noting
that the capture_info routines and structs are GTK+ only. Also note that
if we *do* want to add a Qt capture info dialog we'll probably want to
modernize the information we show.
Change-Id: I3c63f6f01b60f0767fb33602a7f0c3b537dbde51
Reviewed-on: https://code.wireshark.org/review/10991
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/prefs.c')
-rw-r--r-- | epan/prefs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/prefs.c b/epan/prefs.c index 0159bcbd95..ec288b1864 100644 --- a/epan/prefs.c +++ b/epan/prefs.c @@ -2280,6 +2280,7 @@ prefs_register_modules(void) "Save window maximized state at exit?", &prefs.gui_geometry_save_maximized); + /* GTK+ only */ prefs_register_bool_preference(gui_module, "macosx_style", "Use OS X style", "Use OS X style (OS X with native GTK only)?", @@ -2474,6 +2475,7 @@ prefs_register_modules(void) prefs_register_bool_preference(capture_module, "auto_scroll", "Scroll packet list during capture", "Scroll packet list during capture?", &prefs.capture_auto_scroll); + /* GTK+ only */ prefs_register_bool_preference(capture_module, "show_info", "Show capture info dialog while capturing", "Show capture info dialog while capturing?", &prefs.capture_show_info); |