Various fixes
This commit is contained in:
parent
64e5e02744
commit
ba85b56e9f
5 changed files with 46 additions and 72 deletions
|
@ -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();
|
||||
// });
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue