summaryrefslogtreecommitdiff
path: root/src/plugins/qbsprojectmanager/qbsinstallstep.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/qbsprojectmanager/qbsinstallstep.h
parent834cb8d114110d4905c007f45841fd1045851ec7 (diff)
downloadqt-creator-cec468d78a57b2858d3b5c03ccb5c5c1928d628c.tar.gz
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/qbsprojectmanager/qbsinstallstep.h')
-rw-r--r--src/plugins/qbsprojectmanager/qbsinstallstep.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/plugins/qbsprojectmanager/qbsinstallstep.h b/src/plugins/qbsprojectmanager/qbsinstallstep.h
index f414c105aa..5ef48876e3 100644
--- a/src/plugins/qbsprojectmanager/qbsinstallstep.h
+++ b/src/plugins/qbsprojectmanager/qbsinstallstep.h
@@ -29,11 +29,13 @@
#include "qbssession.h"
#include <projectexplorer/buildstep.h>
-#include <projectexplorer/projectconfigurationaspects.h>
#include <projectexplorer/task.h>
+#include <utils/aspects.h>
+
namespace QbsProjectManager {
namespace Internal {
+
class ErrorInfo;
class QbsSession;
@@ -62,9 +64,9 @@ private:
void createTaskAndOutput(ProjectExplorer::Task::TaskType type,
const QString &message, const Utils::FilePath &file, int line);
- ProjectExplorer::BoolAspect *m_cleanInstallRoot = nullptr;
- ProjectExplorer::BoolAspect *m_dryRun = nullptr;
- ProjectExplorer::BoolAspect *m_keepGoing = nullptr;
+ Utils::BoolAspect *m_cleanInstallRoot = nullptr;
+ Utils::BoolAspect *m_dryRun = nullptr;
+ Utils::BoolAspect *m_keepGoing = nullptr;
QbsSession *m_session = nullptr;
QString m_description;