From e4a1c730090fe0eacb46f610b8416d28b4e17840 Mon Sep 17 00:00:00 2001 From: Dov Feldstern Date: Thu, 7 Feb 2008 22:46:47 +0000 Subject: [PATCH] compilation fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22854 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 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; -- 2.39.2