gcc warning fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27492 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2008-11-15 21:21:04 +00:00
parent 2f6b068f1e
commit 57d4b76493

View File

@ -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);