Update import label when rebuilding

* Update the import label (and related stuff) whenever the
   project was rebuild.
This commit is contained in:
Tobias Hunger
2010-02-12 12:25:00 +01:00
parent 0d9fb90c3c
commit 29e60baf8e
3 changed files with 4 additions and 2 deletions

View File

@@ -41,6 +41,7 @@
#include <coreplugin/mainwindow.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <projectexplorer/buildconfiguration.h>
#include <projectexplorer/buildmanager.h>
#include <utils/qtcassert.h>
#include <extensionsystem/pluginmanager.h>
@@ -102,6 +103,9 @@ Qt4ProjectConfigWidget::Qt4ProjectConfigWidget(Qt4Project *project)
connect(m_ui->manageQtVersionPushButtons, SIGNAL(clicked()),
this, SLOT(manageQtVersions()));
connect(ProjectExplorer::ProjectExplorerPlugin::instance()->buildManager(),
SIGNAL(buildQueueFinished(bool)),
this, SLOT(updateImportLabel()));
QtVersionManager *vm = QtVersionManager::instance();
connect(vm, SIGNAL(qtVersionsChanged(QList<int>)),