| 495 | } |
| 496 | |
| 497 | void LuaHighlighter::markFormated(QString *text, int start, int count, const QTextCharFormat& format) |
| 498 | { |
| 499 | setFormat(start, count, format); |
| 500 | if (text) |
| 501 | { |
| 502 | for (int i = 0; i < count; i++) |
| 503 | (*text)[start+i] = QChar(0x02); |
| 504 | } |
| 505 | } |
| 506 | |
| 507 | |
| 508 | class ScriptEditor; |
nothing calls this directly
no outgoing calls
no test coverage detected