summaryrefslogtreecommitdiff
path: root/ui/qt/sequence_diagram.cpp
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-08 11:10:04 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-08 11:10:04 +0000
commit5ed31d2de116cdca90663ff723a10f4c2de39bfc (patch)
treeeba38d3473f8f417f280c6ccdd80bb6f97e435a3 /ui/qt/sequence_diagram.cpp
parent006f84a565f2581e4e1e9aefecceac64658466e8 (diff)
downloadwireshark-5ed31d2de116cdca90663ff723a10f4c2de39bfc.tar.gz
From David Ameiss via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9509
qtshark Flow Graph displays wrong information in comments column In qtshark, the flow graph is displaying the the frame label in the comments field. A simple fix, the patch is attached. svn path=/trunk/; revision=53849
Diffstat (limited to 'ui/qt/sequence_diagram.cpp')
-rw-r--r--ui/qt/sequence_diagram.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/sequence_diagram.cpp b/ui/qt/sequence_diagram.cpp
index b88063c08d..9ae9c0e4a6 100644
--- a/ui/qt/sequence_diagram.cpp
+++ b/ui/qt/sequence_diagram.cpp
@@ -118,7 +118,7 @@ void SequenceDiagram::setData(seq_analysis_info_t *sainfo)
key_ticks.append(cur_key);
key_labels.append(sai->time_str);
- com_labels.append(com_fm.elidedText(sai->frame_label, Qt::ElideRight, elide_w));
+ com_labels.append(com_fm.elidedText(sai->comment, Qt::ElideRight, elide_w));
cur_key++;
}