Ensure that the environment widget is updated correctly

This commit is contained in:
dt
2009-12-08 14:41:56 +01:00
parent ef3abd9be2
commit 97929c440f
5 changed files with 30 additions and 0 deletions

View File

@@ -242,6 +242,7 @@ void Qt4BuildConfiguration::setQtVersion(int id)
setValue(KEY_QT_VERSION_ID, id);
emit qtVersionChanged();
emit targetInformationChanged();
emit environmentChanged();
}
void Qt4BuildConfiguration::setToolChainType(ProjectExplorer::ToolChain::ToolChainType type)
@@ -251,6 +252,7 @@ void Qt4BuildConfiguration::setToolChainType(ProjectExplorer::ToolChain::ToolCha
setValue("ToolChain", (int)type);
emit toolChainTypeChanged();
emit targetInformationChanged();
emit environmentChanged();
}
ProjectExplorer::ToolChain::ToolChainType Qt4BuildConfiguration::toolChainType() const
@@ -322,6 +324,7 @@ void Qt4BuildConfiguration::defaultQtVersionChanged()
if (qtVersionId() == 0) {
emit qtVersionChanged();
emit targetInformationChanged();
emit environmentChanged();
}
}