Various fixes

This commit is contained in:
pokamest 2021-10-07 22:21:04 +03:00
parent 64e5e02744
commit ba85b56e9f
5 changed files with 46 additions and 72 deletions

View file

@ -19,17 +19,17 @@ IpcServerProcess::IpcServerProcess(QObject *parent) :
qDebug() << "IpcServerProcess errorOccurred " << error;
});
connect(m_process.data(), &QProcess::readyReadStandardError, this, [this](){
qDebug() << "IpcServerProcess StandardError " << m_process->readAllStandardError();
// connect(m_process.data(), &QProcess::readyReadStandardError, this, [this](){
// qDebug() << "IpcServerProcess StandardError " << m_process->readAllStandardError();
});
connect(m_process.data(), &QProcess::readyReadStandardOutput, this, [this](){
qDebug() << "IpcServerProcess StandardOutput " << m_process->readAllStandardOutput();
});
// });
// connect(m_process.data(), &QProcess::readyReadStandardOutput, this, [this](){
// qDebug() << "IpcServerProcess StandardOutput " << m_process->readAllStandardOutput();
// });
connect(m_process.data(), &QProcess::readyRead, this, [this](){
qDebug() << "IpcServerProcess StandardOutput " << m_process->readAll();
});
// connect(m_process.data(), &QProcess::readyRead, this, [this](){
// qDebug() << "IpcServerProcess StandardOutput " << m_process->readAll();
// });
}