From: Dov Feldstern Date: Thu, 7 Feb 2008 22:46:47 +0000 (+0000) Subject: compilation fix X-Git-Tag: 1.6.10~6388 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=e4a1c730090fe0eacb46f610b8416d28b4e17840;p=features.git compilation fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22854 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/GuiSymbols.cpp b/src/frontends/qt4/GuiSymbols.cpp index 443a968629..52227372a2 100644 --- a/src/frontends/qt4/GuiSymbols.cpp +++ b/src/frontends/qt4/GuiSymbols.cpp @@ -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;