From ae9bcc77603e9b32489d8355ebd54b0860d723f1 Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Tue, 23 Jun 2009 08:20:10 +0000 Subject: [PATCH] Fix of fix of fix of fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30239 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index baa0c9122a..c78a068978 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -394,11 +394,11 @@ bool GuiView::restoreLayout() // Allow the toc and view-source dock widget to be restored if needed. Dialog * dialog; - if (dialog = findOrBuild("toc", true)) + if ((dialog = findOrBuild("toc", true))) // see bug 5082. At least setup title and enabled state. // Visibility will be adjusted by restoreState below. dialog->prepareView(); - if (dialog = findOrBuild("view-source", true)) + if ((dialog = findOrBuild("view-source", true))) dialog->prepareView(); if (!restoreState(settings.value("layout").toByteArray(), 0)) -- 2.39.5