forked from qt-creator/qt-creator
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user