| 116 | } |
| 117 | |
| 118 | void ProcessLineMaker::flushBuffers() |
| 119 | { |
| 120 | Q_D(ProcessLineMaker); |
| 121 | |
| 122 | if (!d->stdoutbuf.isEmpty()) |
| 123 | emit receivedStdoutLines(QStringList(QString::fromLocal8Bit(d->stdoutbuf))); |
| 124 | if (!d->stderrbuf.isEmpty()) |
| 125 | emit receivedStderrLines(QStringList(QString::fromLocal8Bit(d->stderrbuf))); |
| 126 | discardBuffers(); |
| 127 | } |
| 128 | |
| 129 | } |
| 130 |
no test coverage detected