From bad511f3fe04aff4ff37b12464aed88377f52634 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Thu, 9 Jun 2016 16:58:13 +0200 Subject: [PATCH] Initialize correctly GuiErrorList::from_master_ in constructor Found by Coverity --- src/frontends/qt4/GuiErrorList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/GuiErrorList.cpp b/src/frontends/qt4/GuiErrorList.cpp index 9d908ad5e0..cf3a300925 100644 --- a/src/frontends/qt4/GuiErrorList.cpp +++ b/src/frontends/qt4/GuiErrorList.cpp @@ -57,7 +57,7 @@ namespace lyx { namespace frontend { GuiErrorList::GuiErrorList(GuiView & lv) - : GuiDialog(lv, "errorlist", qt_("Error List")) + : GuiDialog(lv, "errorlist", qt_("Error List")), from_master_(false) { setupUi(this); -- 2.39.2