aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2016-07-07 22:43:49 +0200
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2016-07-08 07:01:59 +0000
commitb0805638861eb36fd842446f16ef86bf97f5767e (patch)
tree3586c4883d5ff0d5a5a7651f43d87509203e37db
parent785d2295bc76fff8c1bf6e287f7fd6d8db3eeede (diff)
Qt: add initializers (CID 1261463).
Change-Id: I5c2d5c73e188586a91dde342d6347d25495e0263 Reviewed-on: https://code.wireshark.org/review/16325 Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
-rw-r--r--ui/qt/follow_stream_dialog.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/qt/follow_stream_dialog.cpp b/ui/qt/follow_stream_dialog.cpp
index 811365e0b4..df8764bc1d 100644
--- a/ui/qt/follow_stream_dialog.cpp
+++ b/ui/qt/follow_stream_dialog.cpp
@@ -71,12 +71,17 @@ static int info_update_freq_ = 100;
FollowStreamDialog::FollowStreamDialog(QWidget &parent, CaptureFile &cf, follow_type_t type) :
WiresharkDialog(parent, cf),
ui(new Ui::FollowStreamDialog),
+ b_find_(NULL),
follow_type_(type),
follower_(NULL),
show_type_(SHOW_ASCII),
truncated_(false),
+ client_buffer_count_(0),
+ server_buffer_count_(0),
client_packet_count_(0),
server_packet_count_(0),
+ last_packet_(0),
+ last_from_server_(0),
turns_(0),
save_as_(false),
use_regex_find_(false)