| 226 | } |
| 227 | |
| 228 | void |
| 229 | ProcessHandler::onStandardErrorBytesWritten() |
| 230 | { |
| 231 | QString str = QString::fromUtf8( _process->readAllStandardError().data() ); |
| 232 | |
| 233 | #ifdef DEBUG |
| 234 | qDebug() << "Message(stderr):" << str; |
| 235 | #endif |
| 236 | _processLog.append(QString::fromUtf8("Error(stderr): ") + str); |
| 237 | } |
| 238 | |
| 239 | void |
| 240 | ProcessHandler::onProcessCanceled() |