forked from qt-creator/qt-creator
Implement ProcessLauncherImpl::setErrorString()
Change-Id: Idd1f0573d5e7db1b45024ed0c5bd7d0831217f25 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -311,7 +311,7 @@ public:
|
||||
qint64 processId() const override { QTC_CHECK(false); return 0; }
|
||||
QProcess::ExitStatus exitStatus() const override { QTC_CHECK(false); return QProcess::NormalExit; }
|
||||
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 waitForReadyRead(int msecs) override { QTC_CHECK(false); return false; }
|
||||
|
Reference in New Issue
Block a user