aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docbook/wsug_src/WSUG_chapter_capture.xml7
-rw-r--r--gtk/capture_if_details_dlg_win32.c2
-rw-r--r--gtk/help_dlg.c3
-rw-r--r--gtk/help_dlg.h1
4 files changed, 11 insertions, 2 deletions
diff --git a/docbook/wsug_src/WSUG_chapter_capture.xml b/docbook/wsug_src/WSUG_chapter_capture.xml
index 597597a1d3..d674adba1f 100644
--- a/docbook/wsug_src/WSUG_chapter_capture.xml
+++ b/docbook/wsug_src/WSUG_chapter_capture.xml
@@ -261,7 +261,12 @@ wireshark -i eth0 -k
</variablelist>
</para>
</section>
-
+
+ <section id="ChCapInterfaceDetailsSection">
+ <title>The "Capture Interface Details" dialog box</title>
+ <para></para>
+ </section>
+
<section id="ChCapCaptureOptions">
<title>The "Capture Options" dialog box</title>
<para>
diff --git a/gtk/capture_if_details_dlg_win32.c b/gtk/capture_if_details_dlg_win32.c
index 2600acb584..73fd6fe24a 100644
--- a/gtk/capture_if_details_dlg_win32.c
+++ b/gtk/capture_if_details_dlg_win32.c
@@ -2356,7 +2356,7 @@ capture_if_details_open_win(char *iface)
window_set_cancel_button(details_open_w, close_bt, window_cancel_button_cb);
help_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_HELP);
- g_signal_connect(help_bt, "clicked", G_CALLBACK(topic_cb), (gpointer) (HELP_CAPTURE_INTERFACES_DETAILS_DIALOG));
+ g_signal_connect(help_bt, "clicked", G_CALLBACK(topic_cb), (gpointer) (HELP_CAPTURE_INTERFACE_OPTIONS_DIALOG));
gtk_widget_grab_focus(close_bt);
diff --git a/gtk/help_dlg.c b/gtk/help_dlg.c
index 94dd8435d1..eefdc68f34 100644
--- a/gtk/help_dlg.c
+++ b/gtk/help_dlg.c
@@ -292,6 +292,9 @@ topic_action(topic_action_e action)
case(HELP_CAPTURE_INTERFACE_OPTIONS_DIALOG):
help_topic_html("ChCustInterfaceOptionsSection.html");
break;
+ case(HELP_CAPTURE_INTERFACES_DETAILS_DIALOG):
+ help_topic_html("ChCapInterfaceDetailsSection.html");
+ break;
case(HELP_PREFERENCES_DIALOG):
help_topic_html("ChCustPreferencesSection.html");
break;
diff --git a/gtk/help_dlg.h b/gtk/help_dlg.h
index 4ab2162554..35223c9582 100644
--- a/gtk/help_dlg.h
+++ b/gtk/help_dlg.h
@@ -81,6 +81,7 @@ typedef enum {
HELP_STATS_IO_GRAPH_DIALOG,
HELP_STATS_WLAN_TRAFFIC_DIALOG,
HELP_CAPTURE_INTERFACE_OPTIONS_DIALOG,
+ HELP_CAPTURE_INTERFACES_DETAILS_DIALOG,
HELP_PREFERENCES_DIALOG,
HELP_CAPTURE_INFO_DIALOG,
HELP_EXPORT_FILE_DIALOG,