mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
Various fixes
This commit is contained in:
@@ -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();
|
||||
// });
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user