| 278 | } |
| 279 | |
| 280 | void OutputWidget::addCheckerOutput(const QVariantMap& output, const QStringList& order) |
| 281 | { |
| 282 | for (auto& it : order) { |
| 283 | _checkerOutput.append({it, output[it]}); |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | void OutputWidget::addText(const QString& text, const QString& messageType) { |
| 288 | addText(text, QTextCharFormat(), messageType); |
nothing calls this directly
no outgoing calls
no test coverage detected