[EMAIL PROTECTED] wrote:
Author: dov
Date: Thu Feb 7 23:46:47 2008
New Revision: 22854
URL: http://www.lyx.org/trac/changeset/22854
Log:
compilation fix
Modified:
lyx-devel/trunk/src/frontends/qt4/GuiSymbols.cpp
Modified: lyx-devel/trunk/src/frontends/qt4/GuiSymbols.cpp
URL:
http://www.lyx.org/trac/file/lyx-devel/trunk/src/frontends/qt4/GuiSymbols.cpp?rev=22854
==============================================================================
--- lyx-devel/trunk/src/frontends/qt4/GuiSymbols.cpp (original)
+++ lyx-devel/trunk/src/frontends/qt4/GuiSymbols.cpp Thu Feb 7 23:46:47 2008
@@ -283,7 +283,7 @@
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);
What's that? It sure is wrong, please revert.
Abdel.