Implement ProcessLauncherImpl::setErrorString()

Change-Id: Idd1f0573d5e7db1b45024ed0c5bd7d0831217f25
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2021-07-09 16:46:41 +02:00
parent 0eb2d62b0a
commit 94a2aefc19

View File

@@ -311,7 +311,7 @@ public:
qint64 processId() const override { QTC_CHECK(false); return 0; } qint64 processId() const override { QTC_CHECK(false); return 0; }
QProcess::ExitStatus exitStatus() const override { QTC_CHECK(false); return QProcess::NormalExit; } QProcess::ExitStatus exitStatus() const override { QTC_CHECK(false); return QProcess::NormalExit; }
QString errorString() const override { return m_errorString; } QString errorString() const override { return m_errorString; }
void setErrorString(const QString &str) override { QTC_CHECK(false); } void setErrorString(const QString &str) override { m_errorString = str; }
bool waitForStarted(int msecs) override { QTC_CHECK(false); return false; } bool waitForStarted(int msecs) override { QTC_CHECK(false); return false; }
bool waitForReadyRead(int msecs) override { QTC_CHECK(false); return false; } bool waitForReadyRead(int msecs) override { QTC_CHECK(false); return false; }