Preserve the user-set build directory for Generic Projects

Previously it would be converted to an absolute path. Preserving the
original path allows it to be set as relative to the project.

Reviewed-by: dt
This commit is contained in:
Thorbjørn Lindeijer
2010-03-15 16:15:36 +01:00
parent 7215c03369
commit c0b42868b0
4 changed files with 18 additions and 10 deletions

View File

@@ -504,7 +504,7 @@ void GenericBuildSettingsWidget::init(BuildConfiguration *bc)
{
m_buildConfiguration = static_cast<GenericBuildConfiguration *>(bc);
m_nameLineEdit->setText(m_buildConfiguration->displayName());
m_pathChooser->setPath(m_buildConfiguration->buildDirectory());
m_pathChooser->setPath(m_buildConfiguration->rawBuildDirectory());
}
void GenericBuildSettingsWidget::configNameEdited(const QString &name)