Fixes: Don't call Qt4ProFileNode::update on rebuild.

Task:     Found by Roberto.
This commit is contained in:
dt
2008-12-09 17:17:12 +01:00
committed by dt
parent 1e8b9167ef
commit ae3fda8b84
5 changed files with 123 additions and 12 deletions

View File

@@ -265,7 +265,7 @@ Qt4Project::~Qt4Project()
void Qt4Project::defaultQtVersionChanged()
{
if (qtVersionId(activeBuildConfiguration()) == 0)
update();
m_rootProjectNode->update();
}
void Qt4Project::qtVersionsChanged()
@@ -274,7 +274,7 @@ void Qt4Project::qtVersionsChanged()
if (!qt4ProjectManager()->versionManager()->version(qtVersionId(bc))->isValid()) {
setQtVersion(bc, 0);
if (bc == activeBuildConfiguration())
update();
m_rootProjectNode->update();
}
}
}
@@ -507,9 +507,9 @@ void Qt4Project::updateCodeModel()
}
/*!
Updates complete project
*/
///*!
// Updates complete project
// */
void Qt4Project::update()
{
// TODO Maybe remove this method completely?