]> git.lyx.org Git - features.git/commitdiff
compilation fix
authorDov Feldstern <dov@lyx.org>
Thu, 7 Feb 2008 22:46:47 +0000 (22:46 +0000)
committerDov Feldstern <dov@lyx.org>
Thu, 7 Feb 2008 22:46:47 +0000 (22:46 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22854 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiSymbols.cpp

index 443a968629f78c424dea89c1108724a08ef01722..52227372a2d27495bc5afa87826745ea009c33c0 100644 (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;