mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
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:
parent
2f6b068f1e
commit
57d4b76493
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user