summaryrefslogtreecommitdiff
path: root/ui/qt/follow_stream_dialog.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-11-18 23:39:47 +0000
committerGerald Combs <gerald@wireshark.org>2013-11-18 23:39:47 +0000
commit45fc7b65e089a12cbb5778825b065a16bf419303 (patch)
tree191e1190134f5ef916e0be0c184f2bac5fed71e0 /ui/qt/follow_stream_dialog.h
parentfe2cd1d08a0cf3777b75e3e5ca35e3075ca5ab28 (diff)
downloadwireshark-45fc7b65e089a12cbb5778825b065a16bf419303.tar.gz
Follow dialog data display improvements.
Change the "Raw" character type to UTF-8. I'm not sure it's possible to show true raw data in a QTextEdit widget and calling it UTF-8 more accurately repesents what happens when you pass a char * to a QString. Add a YAML display. Hopefully Scapy users will find it useful. Sort the the character display items alphabetically. Make sure we go back to the top of the buffer when we change the direction or character set. Be less aggressive about setting focus on the "find text" entry. svn path=/trunk/; revision=53421
Diffstat (limited to 'ui/qt/follow_stream_dialog.h')
-rw-r--r--ui/qt/follow_stream_dialog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/follow_stream_dialog.h b/ui/qt/follow_stream_dialog.h
index d8212c6129..82171d720e 100644
--- a/ui/qt/follow_stream_dialog.h
+++ b/ui/qt/follow_stream_dialog.h
@@ -115,7 +115,7 @@ private:
void follow_stream();
- void add_text(char *buffer, size_t nchars, gboolean is_from_server, guint32 packet_num);
+ void add_text(QString text, gboolean is_from_server, guint32 packet_num);
Ui::FollowStreamDialog *ui;