aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/buildprogress.cpp
diff options
context:
space:
mode:
authorcon <qtc-committer@nokia.com>2009-11-26 15:51:10 +0100
committercon <qtc-committer@nokia.com>2009-11-27 17:08:21 +0100
commit90c03d320929ef641498157611e3c91db17289e9 (patch)
treee564b71eeaf22e4c57019a2ceaf104768cd7c042 /src/plugins/projectexplorer/buildprogress.cpp
parent4688634f7823831547affa26d9d001d140b7b671 (diff)
Add functionality to show progress for the application in task bar/dock.
Move the API to the progress manager. Added a first Mac implementation, other platforms are pending.
Diffstat (limited to 'src/plugins/projectexplorer/buildprogress.cpp')
-rw-r--r--src/plugins/projectexplorer/buildprogress.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/plugins/projectexplorer/buildprogress.cpp b/src/plugins/projectexplorer/buildprogress.cpp
index 906a366634..865fad58c1 100644
--- a/src/plugins/projectexplorer/buildprogress.cpp
+++ b/src/plugins/projectexplorer/buildprogress.cpp
@@ -37,10 +37,6 @@
#include <QtGui/QPixmap>
#include <QtDebug>
-#ifdef Q_OS_MAC
-#include "buildprogress_mac.h"
-#endif
-
using namespace ProjectExplorer;
using namespace ProjectExplorer::Internal;
@@ -98,10 +94,4 @@ void BuildProgress::updateState()
m_warningIcon->setEnabled(haveWarnings);
m_warningLabel->setEnabled(haveWarnings);
m_warningLabel->setText(QString("%1").arg(warnings));
-#ifdef Q_OS_MAC
- if (haveErrors)
- qtcShowDockTileBadgeLabel(QString("%1").arg(errors));
- else
- qtcShowDockTileBadgeLabel("");
-#endif
}