From e50b3c14129ba398965e5b281859ade80b85bf1e Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 13 Apr 2018 15:33:03 +0200 Subject: [PATCH] DesktopQmakeRunConfiguration: Remove unused signals Previously used to signal changes to the run configuration widget, now handled by the aspects internally. Change-Id: I10936610037c9df0469f3d6a66a8a3e8609b50a5 Reviewed-by: Christian Kandeler --- .../qmakeprojectmanager/desktopqmakerunconfiguration.cpp | 2 -- .../qmakeprojectmanager/desktopqmakerunconfiguration.h | 6 ------ 2 files changed, 8 deletions(-) diff --git a/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.cpp b/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.cpp index 761faf183ce..1a17d0fefa1 100644 --- a/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.cpp +++ b/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.cpp @@ -112,8 +112,6 @@ void DesktopQmakeRunConfiguration::updateTargetInformation() terminalAspect->setUseTerminal(bti.usesTerminal); extraAspect()->setExecutable(bti.targetFilePath); - - emit effectiveTargetInformationChanged(); } // diff --git a/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.h b/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.h index 3c200c32550..f7e36f574ae 100644 --- a/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.h +++ b/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.h @@ -47,12 +47,6 @@ public: void addToBaseEnvironment(Utils::Environment &env) const; -signals: - void baseWorkingDirectoryChanged(const QString&); - - // Note: These signals might not get emitted for every change! - void effectiveTargetInformationChanged(); - private: bool fromMap(const QVariantMap &map) override;