From 71e3de38b37fb0dc73ea08b936e705eef896fb86 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Mon, 10 May 2021 15:05:47 +0200 Subject: [PATCH] RemoteLinux: Fix MakeInstallStep widget again Change-Id: I8522085334eade413dc12cb418e2addb2615f9e0 Reviewed-by: hjk --- src/plugins/projectexplorer/makestep.h | 2 ++ src/plugins/remotelinux/makeinstallstep.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/plugins/projectexplorer/makestep.h b/src/plugins/projectexplorer/makestep.h index d1865caea8c..0412864c6eb 100644 --- a/src/plugins/projectexplorer/makestep.h +++ b/src/plugins/projectexplorer/makestep.h @@ -90,6 +90,8 @@ protected: Utils::StringAspect *makeCommandAspect() const { return m_makeCommandAspect; } Utils::MultiSelectionAspect *buildTargetsAspect() const { return m_buildTargetsAspect; } Utils::StringAspect *userArgumentsAspect() const { return m_userArgumentsAspect; } + Utils::BoolAspect *overrideMakeflagsAspect() const { return m_overrideMakeflagsAspect; } + Utils::TextDisplay *nonOverrideWarning() const { return m_nonOverrideWarning; } Utils::IntegerAspect *jobCountAspect() const { return m_userJobCountAspect; } Utils::BoolAspect *disabledForSubdirsAspect() const { return m_disabledForSubdirsAspect; } diff --git a/src/plugins/remotelinux/makeinstallstep.cpp b/src/plugins/remotelinux/makeinstallstep.cpp index 72d9f22e232..581e03b14ec 100644 --- a/src/plugins/remotelinux/makeinstallstep.cpp +++ b/src/plugins/remotelinux/makeinstallstep.cpp @@ -61,6 +61,8 @@ MakeInstallStep::MakeInstallStep(BuildStepList *parent, Utils::Id id) : MakeStep makeCommandAspect()->setVisible(false); buildTargetsAspect()->setVisible(false); userArgumentsAspect()->setVisible(false); + overrideMakeflagsAspect()->setVisible(false); + nonOverrideWarning()->setVisible(false); jobCountAspect()->setVisible(false); disabledForSubdirsAspect()->setVisible(false);