| 802 | } |
| 803 | |
| 804 | void TextEditConsole::appendColor(const QString& text, const QColor color) { |
| 805 | appendFormatted(text, [=](QTextCharFormat& fmt) { fmt.setForeground(color); }); |
| 806 | } |
| 807 | |
| 808 | void TextEditConsole::appendBold(const QString& text) { |
| 809 | appendFormatted(text, [](QTextCharFormat& fmt) { fmt.setFontWeight(QFont::Bold); }); |
no outgoing calls
no test coverage detected