aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2023-10-09 11:42:39 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2023-10-09 12:12:15 +0000
commit222bae949fadc6c45eac6f1499514eeb8d6a389d (patch)
treec54b36ad97d0f37ea938776e664868f44e90f648
parent3b516524e3da4c38dd50c02f89fa856b7bb4e96f (diff)
BuildSystem: Remove unused signal
Change-Id: I5d0d58f749633dd2a00448868fc6068f9866972c Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
-rw-r--r--src/plugins/projectexplorer/buildsystem.cpp1
-rw-r--r--src/plugins/projectexplorer/buildsystem.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/buildsystem.cpp b/src/plugins/projectexplorer/buildsystem.cpp
index 583e532cc4..405de77e17 100644
--- a/src/plugins/projectexplorer/buildsystem.cpp
+++ b/src/plugins/projectexplorer/buildsystem.cpp
@@ -323,7 +323,6 @@ void BuildSystem::setDeploymentData(const DeploymentData &deploymentData)
{
if (d->m_deploymentData != deploymentData) {
d->m_deploymentData = deploymentData;
- emit deploymentDataChanged();
emit target()->deploymentDataChanged();
}
}
diff --git a/src/plugins/projectexplorer/buildsystem.h b/src/plugins/projectexplorer/buildsystem.h
index 55de9b30ac..276427a7f9 100644
--- a/src/plugins/projectexplorer/buildsystem.h
+++ b/src/plugins/projectexplorer/buildsystem.h
@@ -152,7 +152,6 @@ public:
signals:
void parsingStarted();
void parsingFinished(bool success);
- void deploymentDataChanged();
void testInformationUpdated();
void debuggingStarted();