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