aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/makeinstallstep.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/remotelinux/makeinstallstep.cpp')
-rw-r--r--src/plugins/remotelinux/makeinstallstep.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/plugins/remotelinux/makeinstallstep.cpp b/src/plugins/remotelinux/makeinstallstep.cpp
index 8aa811a944..18ad426e67 100644
--- a/src/plugins/remotelinux/makeinstallstep.cpp
+++ b/src/plugins/remotelinux/makeinstallstep.cpp
@@ -25,6 +25,8 @@
#include "makeinstallstep.h"
+#include "remotelinux_constants.h"
+
#include <projectexplorer/buildconfiguration.h>
#include <projectexplorer/buildsteplist.h>
#include <projectexplorer/buildsystem.h>
@@ -53,7 +55,7 @@ const char CleanInstallRootAspectId[] = "RemoteLinux.MakeInstall.CleanInstallRoo
const char FullCommandLineAspectId[] = "RemoteLinux.MakeInstall.FullCommandLine";
const char CustomCommandLineAspectId[] = "RemoteLinux.MakeInstall.CustomCommandLine";
-MakeInstallStep::MakeInstallStep(BuildStepList *parent, Core::Id id) : MakeStep(parent, id)
+MakeInstallStep::MakeInstallStep(BuildStepList *parent, Utils::Id id) : MakeStep(parent, id)
{
setDefaultDisplayName(displayName());
@@ -110,9 +112,9 @@ MakeInstallStep::MakeInstallStep(BuildStepList *parent, Core::Id id) : MakeStep(
makeAspect->setExecutable(cmd.command);
}
-Core::Id MakeInstallStep::stepId()
+Utils::Id MakeInstallStep::stepId()
{
- return "RemoteLinux.MakeInstall";
+ return Constants::MakeInstallStepId;
}
QString MakeInstallStep::displayName()