forked from qt-creator/qt-creator
Refactor deployment
* Add a DeployConfiguration class to hold settings related to deployment. * Add BuildStepsList to hold a list of buildsteps * Update BuildConfiguration to use BuildStepLists instead of manageing lists of buildsteps itself. * Update BuildManager to use BuildStepLists in its interfaces * Fix fallout introduced by API changes * Update .user file to new way of storing settings Task-number: QTCREATORBUG-1427 Task-number: QTCREATORBUG-1428 Task-number: QTCREATORBUG-1811 Task-number: QTCREATORBUG-1930
This commit is contained in:
@@ -58,15 +58,15 @@ namespace Internal {
|
||||
|
||||
const QLatin1String MaemoDeployStep::Id("Qt4ProjectManager.MaemoDeployStep");
|
||||
|
||||
MaemoDeployStep::MaemoDeployStep(ProjectExplorer::BuildConfiguration *bc)
|
||||
: BuildStep(bc, Id), m_deployables(new MaemoDeployables(this))
|
||||
MaemoDeployStep::MaemoDeployStep(ProjectExplorer::BuildStepList *parent)
|
||||
: BuildStep(parent, Id), m_deployables(new MaemoDeployables(this))
|
||||
{
|
||||
ctor();
|
||||
}
|
||||
|
||||
MaemoDeployStep::MaemoDeployStep(ProjectExplorer::BuildConfiguration *bc,
|
||||
MaemoDeployStep::MaemoDeployStep(ProjectExplorer::BuildStepList *parent,
|
||||
MaemoDeployStep *other)
|
||||
: BuildStep(bc, other), m_deployables(new MaemoDeployables(this)),
|
||||
: BuildStep(parent, other), m_deployables(new MaemoDeployables(this)),
|
||||
m_lastDeployed(other->m_lastDeployed)
|
||||
{
|
||||
ctor();
|
||||
|
||||
Reference in New Issue
Block a user