From 57d4b76493192ac599fb9dbf006f4fad702bdb0c Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Sat, 15 Nov 2008 21:21:04 +0000 Subject: [PATCH] gcc warning fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27492 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiSymbols.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/GuiSymbols.cpp b/src/frontends/qt4/GuiSymbols.cpp index 9896b768ee..041a1d33d5 100644 --- a/src/frontends/qt4/GuiSymbols.cpp +++ b/src/frontends/qt4/GuiSymbols.cpp @@ -432,7 +432,7 @@ void GuiSymbols::updateSymbolList(bool update_combo) if (cat == QChar::Other_Control || cat == QChar::Separator_Space) continue; ++numItem; - if (show_all || c >= range_start && c <= range_end) + if (show_all || (c >= range_start && c <= range_end)) s.append(c); if (update_combo) { QString block = getBlock(c); -- 2.39.2