diff options
author | Gerald Combs <gerald@wireshark.org> | 2018-03-21 15:03:53 -0700 |
---|---|---|
committer | Anders Broman <a.broman58@gmail.com> | 2018-03-26 04:25:23 +0000 |
commit | acaff5ad2d36a0b770a78bdddd9f7c8b1bb9ab87 (patch) | |
tree | e60f0d05f31cfb608ba1fb6314963f6a5c707bc9 /ui/help_url.c | |
parent | 6178d2a120fde3b1b4da2f4cc719ed3ce28e9f9d (diff) | |
download | wireshark-acaff5ad2d36a0b770a78bdddd9f7c8b1bb9ab87.tar.gz wireshark-acaff5ad2d36a0b770a78bdddd9f7c8b1bb9ab87.tar.bz2 wireshark-acaff5ad2d36a0b770a78bdddd9f7c8b1bb9ab87.zip |
Qt: TCP Stream Graphs dialog updates.
Add duplicate ACK ticks to Statistics → TCP Stream Graphs → Time
Sequence (tcptrace), which I missed when porting from GTK+. Add zero
window crosses while we're here.
Switch TCPStreamDialog to a subclass of GeometryStateDialog.
Add a slot and URL for the Help button and a stub entry in the User's
Guide.
Bug: 12009
Change-Id: Idf2ddb9eb33d924d65998285b5cffc234156497c
Reviewed-on: https://code.wireshark.org/review/26592
Reviewed-by: Gerald Combs <gerald@wireshark.org>
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui/help_url.c')
-rw-r--r-- | ui/help_url.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/help_url.c b/ui/help_url.c index 1d48935129..3f6c3af6c5 100644 --- a/ui/help_url.c +++ b/ui/help_url.c @@ -253,6 +253,9 @@ topic_action_url(topic_action_e action) case(HELP_STATS_LTE_RLC_TRAFFIC_DIALOG): url = user_guide_url("ChTelLTERLCTraffic.html"); break; + case(HELP_STATS_TCP_STREAM_GRAPHS_DIALOG): + url = user_guide_url("ChStatTCPStreamGraphs.html"); + break; case(HELP_STATS_WLAN_TRAFFIC_DIALOG): url = user_guide_url("ChStatWLANTraffic.html"); break; |