ProjectConfiguration: Add isActive() method

Returns true if the ProjectConfiguration element is currently active
and false otherwise.

Just a convenience method.

Change-Id: If75809ae7e78149d264deaaf6adc4ca8a8be43c2
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Tobias Hunger
2016-05-02 16:04:45 +02:00
parent 90e40f932d
commit ef2f2804a1
13 changed files with 44 additions and 0 deletions

View File

@@ -146,6 +146,11 @@ Project *DeployConfiguration::project() const
return target()->project();
}
bool DeployConfiguration::isActive() const
{
return target()->isActive() && target()->activeDeployConfiguration() == this;
}
void DeployConfiguration::cloneSteps(DeployConfiguration *source)
{
if (source == this)