BuildManager: Only pop up build issues if there are relevant issues.

Previously it also poped up and showed a build failure if there were
any error-type tasks in 'My Tasks', 'Analyser' or 'QML'.

Change-Id: Ie86be0afe1f0b7571b2cb764b7c53f282183b513
Reviewed-on: http://codereview.qt.nokia.com/2807
Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
Christian Kamm
2011-08-10 08:21:10 +02:00
parent bf8cb5d4fc
commit 13c8f9eaaa
3 changed files with 36 additions and 12 deletions

View File

@@ -57,9 +57,9 @@ public:
TaskWindow(ProjectExplorer::TaskHub *taskHub);
virtual ~TaskWindow();
int taskCount() const;
int warningTaskCount() const;
int errorTaskCount() const;
int taskCount(const QString &category = QString()) const;
int warningTaskCount(const QString &category = QString()) const;
int errorTaskCount(const QString &category = QString()) const;
// IOutputPane
QWidget *outputWidget(QWidget *);