summaryrefslogtreecommitdiff
path: root/ui/help_url.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2016-02-07 22:15:12 +0100
committerStig Bjørlykke <stig@bjorlykke.org>2016-02-08 16:54:12 +0000
commit1b5382caa57555bd73601937d9f08afb179f0228 (patch)
treed8fc81a86a6975afb3dd3c1b0d43c0a90f6448f9 /ui/help_url.c
parent56a41845e7aada1655553a50abaa64df6817d8d2 (diff)
downloadwireshark-1b5382caa57555bd73601937d9f08afb179f0228.tar.gz
Qt: Add Show Packet Bytes Dialog
Show selected packet bytes as ASCII, HTML, Image, ISO 8859-1, Raw or UTF-8. Images supported are what's supported by QImage, and HTML supported is what's supported by QTextEdit. Change-Id: I96fc5c5d222c5389078576463cf78d82cf55528d Reviewed-on: https://code.wireshark.org/review/13807 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'ui/help_url.c')
-rw-r--r--ui/help_url.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/help_url.c b/ui/help_url.c
index 7a2b9a026e..2120c24143 100644
--- a/ui/help_url.c
+++ b/ui/help_url.c
@@ -262,6 +262,9 @@ topic_action_url(topic_action_e action)
case(HELP_FOLLOW_STREAM_DIALOG):
url = user_guide_url("ChAdvFollowTCPSection.html");
break;
+ case(HELP_SHOW_PACKET_BYTES_DIALOG):
+ url = user_guide_url("ChAdvShowPacketBytes.html");
+ break;
case(HELP_EXPERT_INFO_DIALOG):
url = user_guide_url("ChAdvExpert.html");
break;