aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/runcontrol.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-09-18 12:11:40 +0200
committerhjk <hjk@qt.io>2020-09-23 07:44:42 +0000
commitcec468d78a57b2858d3b5c03ccb5c5c1928d628c (patch)
tree1118e25efb84695de335768aae04818e9685dd84 /src/plugins/projectexplorer/runcontrol.h
parent834cb8d114110d4905c007f45841fd1045851ec7 (diff)
Utils/ProjectExplorer: Move re-usabled bits of aspects to Utils
Classes involved are BaseAspect and some derived classes, LayoutBuilder and VariableChooser. This is mostly mechanical, with various include/using changes to make it compile. Change-Id: I624a457f3555f102e541c4c71e33a9423af32250 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/runcontrol.h')
-rw-r--r--src/plugins/projectexplorer/runcontrol.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/runcontrol.h b/src/plugins/projectexplorer/runcontrol.h
index b609815363..0dfd35edf8 100644
--- a/src/plugins/projectexplorer/runcontrol.h
+++ b/src/plugins/projectexplorer/runcontrol.h
@@ -224,7 +224,7 @@ public:
Project *project() const;
Kit *kit() const;
const Utils::MacroExpander *macroExpander() const;
- ProjectConfigurationAspect *aspect(Utils::Id id) const;
+ Utils::BaseAspect *aspect(Utils::Id id) const;
template <typename T> T *aspect() const {
return runConfiguration() ? runConfiguration()->aspect<T>() : nullptr;
}