forked from qt-creator/qt-creator
ProjectExplorer: Remove unconnected applicationTargetChanged
Change-Id: Id6a283118c904ad13e8bcfc4b23b9dd76b3cc83f Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
@@ -325,7 +325,6 @@ void BuildSystem::setDeploymentData(const DeploymentData &deploymentData)
|
||||
if (d->m_deploymentData != deploymentData) {
|
||||
d->m_deploymentData = deploymentData;
|
||||
emit deploymentDataChanged();
|
||||
emit applicationTargetsChanged();
|
||||
emit target()->deploymentDataChanged();
|
||||
}
|
||||
}
|
||||
@@ -337,10 +336,7 @@ DeploymentData BuildSystem::deploymentData() const
|
||||
|
||||
void BuildSystem::setApplicationTargets(const QList<BuildTargetInfo> &appTargets)
|
||||
{
|
||||
if (Utils::toSet(appTargets) != Utils::toSet(d->m_appTargets)) {
|
||||
d->m_appTargets = appTargets;
|
||||
emit applicationTargetsChanged();
|
||||
}
|
||||
}
|
||||
|
||||
const QList<BuildTargetInfo> BuildSystem::applicationTargets() const
|
||||
|
@@ -152,7 +152,6 @@ signals:
|
||||
void parsingStarted();
|
||||
void parsingFinished(bool success);
|
||||
void deploymentDataChanged();
|
||||
void applicationTargetsChanged();
|
||||
void testInformationUpdated();
|
||||
|
||||
protected:
|
||||
|
Reference in New Issue
Block a user