aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/help_dlg.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-04-29 14:51:52 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-04-29 14:51:52 +0000
commitc3fad52d9268cc5d370305ee586ede8904d8bc60 (patch)
tree1870e4883021400841c6895227fca301b063b71a /gtk/help_dlg.c
parentffd92a2a5972ff3744607dbff03a702abbb44436 (diff)
add a new feature: list the files of a "File Set" (set of files generated by capturing "Multiple Files"/ringbuffer) and jump from one file of it to the next/previous one
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14231 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/help_dlg.c')
-rw-r--r--gtk/help_dlg.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/gtk/help_dlg.c b/gtk/help_dlg.c
index 8327b3a694..74bfcff847 100644
--- a/gtk/help_dlg.c
+++ b/gtk/help_dlg.c
@@ -187,8 +187,15 @@ void help_dialog(void)
gboolean topic_available(topic_action_e action) {
#ifdef ETHEREAL_EUG_DIR
- /* online: we have all pages available */
- return TRUE;
+ /* online: we have almost all pages available */
+ switch(action) {
+ case(HELP_FILESET_DIALOG):
+ /* currently not available */
+ return FALSE;
+ break;
+ default:
+ return TRUE;
+ }
#else
/* offline: we have only some pages available */
switch(action) {