aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/processcommandexecutor.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2015-11-17 15:15:21 +0100
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-11-17 14:34:48 +0000
commit624970dd1373979c214ed072ea9e2d1319c2d07d (patch)
treebed76fb529ca341a2f133f74815deeb954d0b947 /src/lib/corelib/buildgraph/processcommandexecutor.h
parenteac735bc33d9f09437fe89c6d11cd5ade013b7bc (diff)
Allow more fine-grained error reporting in ProcessResult.
We achieve this by forwarding QProcess::ProcessError instead of QProcess::ExitStatus. Change-Id: Id4b9ac7facbb92281e0a11da635131145114be9d Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'src/lib/corelib/buildgraph/processcommandexecutor.h')
-rw-r--r--src/lib/corelib/buildgraph/processcommandexecutor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/corelib/buildgraph/processcommandexecutor.h b/src/lib/corelib/buildgraph/processcommandexecutor.h
index d0b4bb82b..824c7fbe7 100644
--- a/src/lib/corelib/buildgraph/processcommandexecutor.h
+++ b/src/lib/corelib/buildgraph/processcommandexecutor.h
@@ -58,7 +58,7 @@ signals:
private slots:
void onProcessError();
- void onProcessFinished(int exitCode);
+ void onProcessFinished();
private:
void doSetup();
@@ -68,7 +68,7 @@ private:
void startProcessCommand();
QString filterProcessOutput(const QByteArray &output, const QString &filterFunctionSource);
- void sendProcessOutput(bool success);
+ void sendProcessOutput();
void removeResponseFile();
const ProcessCommand *processCommand() const;