aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/gccparser.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2020-05-12 16:26:34 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2020-05-14 08:23:59 +0000
commitb02f6b5d30a81040ad5f4912d689926ddc4da95a (patch)
treeafc214dcbbaa8331c096e0f04489e28ced5898ab /src/plugins/projectexplorer/gccparser.h
parente35f945758e46051a85c7d33a91eedcf31f5d98a (diff)
ProjectExplorer: Give the Task class an explicit summary
We'd like to create more useful tasks from compiler output, that is, try harder to identify consecutive lines that refer to the same issue and create one task for them, rather than one for each line. In such "aggregate" tasks, the first line will not necessarily carry the main information. Therefore, we make it explicit what this main information is by introducing a dedicated summary member. Also streamline the font handling for compile tasks. Change-Id: I933f2643a13c710dab1ab548c56669b129026eb5 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/gccparser.h')
-rw-r--r--src/plugins/projectexplorer/gccparser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/gccparser.h b/src/plugins/projectexplorer/gccparser.h
index 76afb53668..326b02a47d 100644
--- a/src/plugins/projectexplorer/gccparser.h
+++ b/src/plugins/projectexplorer/gccparser.h
@@ -48,7 +48,7 @@ protected:
void newTask(const Task &task);
void flush() override;
- void amendDescription(const QString &desc, bool monospaced);
+ void amendDescription(const QString &desc);
private:
Result handleLine(const QString &line, Utils::OutputFormat type) override;