From 5a05255f05b4605ed1e7f75026d4bfab267d1090 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Thu, 26 Feb 2015 15:54:20 +0100 Subject: [PATCH] Revert "Do not add an "Analyzer" category to the "Issues" pane filter." This reverts commit 324854a5cf522d32b425bc7de79d485f34e3877f. It turns out that while there are no current users of this category, it does make sense and will in fact be used soon. In particular, the fact that some analyzers have their own issue views does not matter, as these are for "regular" errors that the analyzers find while doing their job, while the general Issues pane would be for "irregular" errors that occur running an analyzer. Change-Id: Ib595ff0e0b27a62634c41ffba220b312f5442f44 Reviewed-by: hjk --- src/plugins/analyzerbase/analyzerplugin.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plugins/analyzerbase/analyzerplugin.cpp b/src/plugins/analyzerbase/analyzerplugin.cpp index b5a9b1d3c82..a396dc5056b 100644 --- a/src/plugins/analyzerbase/analyzerplugin.cpp +++ b/src/plugins/analyzerbase/analyzerplugin.cpp @@ -65,6 +65,10 @@ bool AnalyzerPlugin::initialize(const QStringList &arguments, QString *errorStri (void) new AnalyzerManager(this); + // Task integration. + //: Category under which Analyzer tasks are listed in Issues view + ProjectExplorer::TaskHub::addCategory(Constants::ANALYZERTASK_ID, tr("Analyzer")); + return true; }