forked from qt-creator/qt-creator
QmakeProjectManager: Un-export QmakeMakeStep
Not directly used in leaf plugins (iOS?) anymore. Change-Id: I5fcf7e0d976e99b5d9eb8b0e6404651b35d5db43 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -32,7 +32,6 @@
|
||||
#include "qmakenodes.h"
|
||||
#include "qmakesettings.h"
|
||||
#include "qmakestep.h"
|
||||
#include "qmakemakestep.h"
|
||||
#include "makefileparse.h"
|
||||
#include "qmakebuildconfiguration.h"
|
||||
|
||||
@@ -47,6 +46,7 @@
|
||||
#include <projectexplorer/buildpropertiessettings.h>
|
||||
#include <projectexplorer/buildsteplist.h>
|
||||
#include <projectexplorer/kit.h>
|
||||
#include <projectexplorer/makestep.h>
|
||||
#include <projectexplorer/projectexplorer.h>
|
||||
#include <projectexplorer/projectexplorerconstants.h>
|
||||
#include <projectexplorer/projectmacroexpander.h>
|
||||
@@ -491,12 +491,12 @@ QMakeStep *QmakeBuildConfiguration::qmakeStep() const
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
QmakeMakeStep *QmakeBuildConfiguration::makeStep() const
|
||||
MakeStep *QmakeBuildConfiguration::makeStep() const
|
||||
{
|
||||
QmakeMakeStep *ms = nullptr;
|
||||
MakeStep *ms = nullptr;
|
||||
BuildStepList *bsl = buildSteps();
|
||||
for (int i = 0; i < bsl->count(); ++i)
|
||||
if ((ms = qobject_cast<QmakeMakeStep *>(bsl->at(i))) != nullptr)
|
||||
if ((ms = qobject_cast<MakeStep *>(bsl->at(i))) != nullptr)
|
||||
return ms;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user