compilation fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22854 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Dov Feldstern 2008-02-07 22:46:47 +00:00
parent 209a87ac23
commit e4a1c73009

View File

@ -283,7 +283,7 @@ void GuiSymbols::updateSymbolList()
SymbolsList::const_iterator const end = symbols.end();
for (SymbolsList::const_iterator it = symbols.begin(); it != end; ++it) {
char_type c = *it;
QChar::Category cat = QChar::category((uint) c);
QChar::Category cat = QChar::Category((uint) c);
// we do not want control or space characters
if (cat == QChar::Other_Control || cat == QChar::Separator_Space)
continue;