| 26 | #include <QTextStream> |
| 27 | |
| 28 | PlainTextLog::PlainTextLog(QWidget* parent) |
| 29 | : QPlainTextEdit(parent) |
| 30 | { |
| 31 | setReadOnly(true); |
| 32 | } |
| 33 | |
| 34 | PlainTextLog::PlainTextLog(const QString& text, QWidget* parent) |
| 35 | : QPlainTextEdit(text, parent) |
nothing calls this directly
no outgoing calls
no test coverage detected