Class name simplification for MakeStep related classes

Was a bit confusing that a MakeStep was constructed by a
MakeBuildStepFactory and configured by a MakeBuildStepConfigWidget.

The MakeStep of the generic project manager was renamed to
GenericMakeStep.
This commit is contained in:
Thorbjørn Lindeijer
2009-03-18 13:33:00 +01:00
parent 93b3dda602
commit 3904b2ad3e
10 changed files with 85 additions and 81 deletions

View File

@@ -32,23 +32,28 @@
#include "genericprojectmanager.h"
#include "genericprojectnodes.h"
#include "makestep.h"
#include <projectexplorer/project.h>
#include <projectexplorer/projectnodes.h>
#include <projectexplorer/buildstep.h>
#include <projectexplorer/toolchain.h>
#include <coreplugin/ifile.h>
#include <utils/pathchooser.h>
QT_BEGIN_NAMESPACE
class QPushButton;
class QStringListModel;
QT_END_NAMESPACE
namespace GenericProjectManager {
namespace Internal{
namespace Core {
namespace Utils {
class PathChooser;
}
}
namespace GenericProjectManager {
namespace Internal {
class GenericMakeStep;
class GenericProjectFile;
class GenericProject : public ProjectExplorer::Project
@@ -82,7 +87,7 @@ public:
virtual QStringList files(FilesMode fileMode) const;
QStringList targets() const;
MakeStep *makeStep() const;
GenericMakeStep *makeStep() const;
QString buildParser(const QString &buildConfiguration) const;
QStringList convertToAbsoluteFiles(const QStringList &paths) const;