Qt: add initializers (CID 1249475).

Change-Id: Ic001c0dfab1e82c66473d6ca15633aaa57520659
Reviewed-on: https://code.wireshark.org/review/16294
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Dario Lombardo 2016-07-04 22:58:41 +02:00 committed by Michael Mann
parent 0b35075866
commit 5c11909f4d
1 changed files with 5 additions and 1 deletions

View File

@ -66,7 +66,11 @@ ByteViewText::ByteViewText(QWidget *parent, tvbuff_t *tvb, proto_tree *tree, QTr
show_offset_(true),
show_hex_(true),
show_ascii_(true),
row_width_(recent.gui_bytes_view == BYTES_HEX ? 16 : 8)
row_width_(recent.gui_bytes_view == BYTES_HEX ? 16 : 8),
one_em_(0),
font_width_(0),
line_spacing_(0),
margin_(0)
{
QAction *action;