DataFilter { } syntax highlight

.. for errors etc.
This commit is contained in:
Mark Liversedge
2015-12-05 19:46:38 +00:00
parent 5311661000
commit 28417d165c

View File

@@ -615,6 +615,13 @@ void Leaf::color(Leaf *leaf, QTextDocument *document)
}
break;
case Leaf::Compound :
{
foreach(Leaf *statement, *(leaf->lvalue.b)) leaf->color(statement, document);
// don't return in case the whole thing is a mess...
}
break;
default:
return;
break;