forked from qt-creator/qt-creator
		
	ProjectExplorer: Add signal to inform about deployment data changes.
Also one for changes to the application target list. This re-enables the RemoteLinux plugin's ability to react to changes in project files, which has been broken by the removal of the buildSystemEvaluated() signal from the Project class in I50249b186917cd3a4f399f187f09ac8428ab6f9e. Change-Id: I380db69c9396b99423ff305096d4b9f4f17d3075 Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
This commit is contained in:
		@@ -368,7 +368,10 @@ void Target::setActiveDeployConfiguration(DeployConfiguration *dc)
 | 
			
		||||
 | 
			
		||||
void Target::setDeploymentData(const DeploymentData &deploymentData)
 | 
			
		||||
{
 | 
			
		||||
    d->m_deploymentData = deploymentData;
 | 
			
		||||
    if (d->m_deploymentData != deploymentData) {
 | 
			
		||||
        d->m_deploymentData = deploymentData;
 | 
			
		||||
        emit deploymentDataChanged();
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
DeploymentData Target::deploymentData() const
 | 
			
		||||
@@ -378,7 +381,10 @@ DeploymentData Target::deploymentData() const
 | 
			
		||||
 | 
			
		||||
void Target::setApplicationTargets(const BuildTargetInfoList &appTargets)
 | 
			
		||||
{
 | 
			
		||||
    d->m_appTargets = appTargets;
 | 
			
		||||
    if (d->m_appTargets != appTargets) {
 | 
			
		||||
        d->m_appTargets = appTargets;
 | 
			
		||||
        emit applicationTargetsChanged();
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
BuildTargetInfoList Target::applicationTargets() const
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user