aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/extracompiler.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-05-27 16:09:44 +0200
committerhjk <hjk@qt.io>2019-05-28 05:51:40 +0000
commit2b1c8aa8777bfacb2d65cf137b45be86b58ef3cf (patch)
tree313688371de0cee8f2a4174d82a7828d051f3cf3 /src/plugins/projectexplorer/extracompiler.h
parent24560d883093e88d1c8f3c237c84b0d2fd720d0c (diff)
ProjectExplorer: Introduce a alias for QList<Tasks>
Change-Id: I91391ad22b420926b0f512cac23cfe009048b218 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/extracompiler.h')
-rw-r--r--src/plugins/projectexplorer/extracompiler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/extracompiler.h b/src/plugins/projectexplorer/extracompiler.h
index 006555ffc6..d5732470d4 100644
--- a/src/plugins/projectexplorer/extracompiler.h
+++ b/src/plugins/projectexplorer/extracompiler.h
@@ -79,7 +79,7 @@ signals:
protected:
Utils::Environment buildEnvironment() const;
- void setCompileIssues(const QList<Task> &issues);
+ void setCompileIssues(const Tasks &issues);
private:
void onTargetsBuilt(Project *project);
@@ -123,7 +123,7 @@ protected:
{ Q_UNUSED(process); Q_UNUSED(sourceContents); }
virtual FileNameToContentsHash handleProcessFinished(QProcess *process) = 0;
- virtual QList<Task> parseIssues(const QByteArray &stdErr);
+ virtual Tasks parseIssues(const QByteArray &stdErr);
private:
using ContentProvider = std::function<QByteArray()>;