mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-14 12:25:11 +00:00
compilation fix
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22854 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
209a87ac23
commit
e4a1c73009
@ -283,7 +283,7 @@ void GuiSymbols::updateSymbolList()
|
|||||||
SymbolsList::const_iterator const end = symbols.end();
|
SymbolsList::const_iterator const end = symbols.end();
|
||||||
for (SymbolsList::const_iterator it = symbols.begin(); it != end; ++it) {
|
for (SymbolsList::const_iterator it = symbols.begin(); it != end; ++it) {
|
||||||
char_type c = *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
|
// we do not want control or space characters
|
||||||
if (cat == QChar::Other_Control || cat == QChar::Separator_Space)
|
if (cat == QChar::Other_Control || cat == QChar::Separator_Space)
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user