aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/executorjob.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/buildgraph/executorjob.h')
-rw-r--r--src/lib/corelib/buildgraph/executorjob.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/corelib/buildgraph/executorjob.h b/src/lib/corelib/buildgraph/executorjob.h
index dee7080b8..a6e4d1674 100644
--- a/src/lib/corelib/buildgraph/executorjob.h
+++ b/src/lib/corelib/buildgraph/executorjob.h
@@ -64,13 +64,11 @@ public:
signals:
void reportCommandDescription(const QString &highlight, const QString &message);
void reportProcessResult(const qbs::ProcessResult &result);
- void error(const qbs::ErrorInfo &error);
- void success();
+ void finished(const qbs::ErrorInfo &error = ErrorInfo()); // !hasError() <=> command successful
private slots:
void runNextCommand();
- void onCommandError(const qbs::ErrorInfo &err);
- void onCommandFinished();
+ void onCommandFinished(const qbs::ErrorInfo &err);
private:
void setFinished();