QtcProcess: Get rid of setResult()

This isn't meant to be called publicly.

Change-Id: I1a5e5325ac268e1bbfcc34c529cfc3c7e628243c
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2022-10-10 11:37:16 +02:00
parent bcadbe666b
commit 39258f5522
2 changed files with 0 additions and 6 deletions

View File

@@ -1296,11 +1296,6 @@ ProcessResult QtcProcess::result() const
return d->m_result;
}
void QtcProcess::setResult(const ProcessResult &result)
{
d->m_result = result;
}
ProcessResultData QtcProcess::resultData() const
{
return d->m_resultData;

View File

@@ -159,7 +159,6 @@ public:
bool readDataFromProcess(QByteArray *stdOut, QByteArray *stdErr, int timeoutS = 30);
ProcessResult result() const;
void setResult(const ProcessResult &result);
QByteArray allRawOutput() const;
QString allOutput() const;