Initialize properly InsetTabular members in constructor

Found by Coverity
This commit is contained in:
Jean-Marc Lasgouttes 2016-06-09 17:23:27 +02:00
parent 0f5c34b8ab
commit ab40fe6f05

View File

@ -3474,7 +3474,8 @@ InsetTabular::InsetTabular(Buffer * buf, row_type rows,
InsetTabular::InsetTabular(InsetTabular const & tab)
: Inset(tab), tabular(tab.tabular)
: Inset(tab), tabular(tab.tabular),
first_visible_cell_(0), offset_valign_(0), rowselect_(false), colselect_(false)
{
}