summaryrefslogtreecommitdiff
path: root/ui/help_url.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-02-11 15:00:27 -0800
committerGerald Combs <gerald@wireshark.org>2015-02-12 23:32:54 +0000
commit931807ea61cd9b2729fa06fefa6ce3a09b89ee4b (patch)
treeb796fb4fb520959d3fc1e6fb00c1da223c22fdbf /ui/help_url.c
parentb3e2c568b00408f37282c73bed74e421bd574766 (diff)
downloadwireshark-931807ea61cd9b2729fa06fefa6ce3a09b89ee4b.tar.gz
Qt: Add the "new packet" window^Wdialog^Wwindow.
Allow persistence across files. Preserve the use of "window" even though we're really a dialog. Update ByteViewTab and ProtoTree to support multiple instances. Remove the need for a cast in frame_data. Add more forward declarations. Change-Id: I50d3d9d1455b8ecc158a37218f9e41fe696d5ae2 Reviewed-on: https://code.wireshark.org/review/7086 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/help_url.c')
-rw-r--r--ui/help_url.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/help_url.c b/ui/help_url.c
index bbc724d2bb..0f9520a1b1 100644
--- a/ui/help_url.c
+++ b/ui/help_url.c
@@ -148,7 +148,7 @@ user_guide_url(const gchar *page) {
} else {
#endif /* ifdef DOC_DIR */
/* try to open the HTML page from wireshark.org instead */
- g_string_printf(url, "http://www.wireshark.org/docs/wsug_html_chunked/%s", page);
+ g_string_printf(url, "https://www.wireshark.org/docs/wsug_html_chunked/%s", page);
#ifdef DOC_DIR
}
#endif /* ifdef DOC_DIR */
@@ -336,6 +336,8 @@ topic_action_url(topic_action_e action)
case(HELP_RTP_ANALYSIS_DIALOG):
url = user_guide_url("ChTelRTPAnalysis.html");
break;
+ case(HELP_NEW_PACKET_DIALOG):
+ return user_guide_url("ChapterWork.html#ChWorkPacketSepView");
case(TOPIC_ACTION_NONE):
default: