From c056062d59d9118d57b296710abf90b0923b3e14 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Thu, 9 Jun 2016 16:38:32 +0200 Subject: [PATCH] Initialize some GuiTabular members in constructor Found by Coverity. --- src/frontends/qt4/GuiTabular.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); -- 2.39.5