aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/runcontrol.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-08-07 12:16:48 +0200
committerhjk <hjk@qt.io>2019-08-07 11:51:04 +0000
commita79957038ad7d761e12a05446e2f9505569d7285 (patch)
tree70e92eb25831f2b0a5ba5a9ca778d6f6029fa442 /src/plugins/projectexplorer/runcontrol.h
parentebc2b9ed6fe2613cbde6099368b05587db6b9c49 (diff)
ProjectExplorer: Replace RunControl::buildTargetInfo
... by two accessors to the only used field. General idea here is to make the presence of a RunConfiguration in a RunControl less prominent to be able to remove it at some time completely, as the configuration's data might change while the control is running. Change-Id: I752540fadd135d6904fc9bf4e3506be074b0c003 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/runcontrol.h')
-rw-r--r--src/plugins/projectexplorer/runcontrol.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/runcontrol.h b/src/plugins/projectexplorer/runcontrol.h
index ce78866968..2c2defadb4 100644
--- a/src/plugins/projectexplorer/runcontrol.h
+++ b/src/plugins/projectexplorer/runcontrol.h
@@ -26,7 +26,6 @@
#pragma once
#include "applicationlauncher.h"
-#include "buildtargetinfo.h"
#include "devicesupport/idevice.h"
#include "projectexplorerconstants.h"
#include "runconfiguration.h"
@@ -245,7 +244,9 @@ public:
ISettingsAspect *settings(Core::Id id) const;
QString buildKey() const;
- BuildTargetInfo buildTargetInfo() const;
+
+ Utils::FilePath targetFilePath() const;
+ Utils::FilePath projectFilePath() const;
Utils::OutputFormatter *outputFormatter() const;
Core::Id runMode() const;