From: Jean-Marc Lasgouttes Date: Thu, 9 Jun 2016 14:38:32 +0000 (+0200) Subject: Initialize some GuiTabular members in constructor X-Git-Tag: 2.3.0alpha1~1532 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=c056062d59d9118d57b296710abf90b0923b3e14;p=features.git Initialize some GuiTabular members in constructor Found by Coverity. --- diff --git a/src/frontends/qt4/GuiTabular.cpp b/src/frontends/qt4/GuiTabular.cpp index fde382b936..b021836ac0 100644 --- a/src/frontends/qt4/GuiTabular.cpp +++ b/src/frontends/qt4/GuiTabular.cpp @@ -45,7 +45,9 @@ namespace lyx { namespace frontend { GuiTabular::GuiTabular(QWidget * parent) - : InsetParamsWidget(parent) + : InsetParamsWidget(parent), firstheader_suppressable_(false), + lastfooter_suppressable_(false) + { setupUi(this);