Qt4Project: Fix updating of problem label on kit changes

Task-number: QTCREATORBUG-7873
Change-Id: Ief2ea0b7748eb003306fa2b6928dfded1e00ef43
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Daniel Teske
2012-09-19 15:56:55 +02:00
committed by Tobias Hunger
parent 458cfb18de
commit 03c65e62b7

View File

@@ -99,6 +99,8 @@ Qt4ProjectConfigWidget::Qt4ProjectConfigWidget(ProjectExplorer::Target *target)
Qt4Project *project = static_cast<Qt4Project *>(target->project());
connect(project, SIGNAL(environmentChanged()), this, SLOT(environmentChanged()));
connect(project, SIGNAL(buildDirectoryInitialized()), this, SLOT(updateProblemLabel()));
connect(target, SIGNAL(kitChanged()), this, SLOT(updateProblemLabel()));
}
Qt4ProjectConfigWidget::~Qt4ProjectConfigWidget()